Skip to content

Commit

Permalink
pip bug fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
keanteng committed Sep 7, 2023
1 parent 8804a71 commit c9f1f75
Show file tree
Hide file tree
Showing 6 changed files with 27 additions and 4 deletions.
4 changes: 2 additions & 2 deletions BlueAutomata.egg-info/PKG-INFO
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
Metadata-Version: 2.1
Name: BlueAutomata
Version: 0.2
Version: 0.4
Summary: A package to ease the workflow for reporting in a company
Home-page: https://github.com/keanteng/blueautomata
Download-URL: https://github.com/keanteng/blueautomata/archive/refs/tags/v_0.2.tar.gz
Download-URL: https://github.com/keanteng/blueautomata/archive/refs/tags/v_0.4.tar.gz
Author: keanteng
Author-email: u2004763@siswa.um.edu.my
License: MIT
Expand Down
15 changes: 15 additions & 0 deletions blueautomata/__init__.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
from . import automation_report
from . import batch_export
from . import data_compilation
from . import inconsistency
from . import system_cube
from . import to_vba

__all__ = [
'automation_report',
'batch_export',
'data_compilation',
'inconsistency',
'system_cube',
'to_vba'
]
Binary file removed dist/BlueAutomata-0.1.tar.gz
Binary file not shown.
Binary file removed dist/BlueAutomata-0.2.tar.gz
Binary file not shown.
Binary file added dist/BlueAutomata-0.4.tar.gz
Binary file not shown.
12 changes: 10 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
@@ -1,15 +1,23 @@
from distutils.core import setup
from setuptools import find_packages, setup

with open('README.md') as readme_file:
README = readme_file.read()

setup(
name = 'BlueAutomata', # How you named your package folder (MyLib)
packages = ['BlueAutomata'], # Chose the same as "name"
version = '0.2', # Start with a small number and increase it with every change you make
version = '0.5', # Start with a small number and increase it with every change you make
license='MIT', # Chose a license from here: https://help.github.com/articles/licensing-a-repository
description = 'A package to ease the workflow for reporting in a company', # Give a short description about your library
long_description_content_type="text/markdown",
long_description=README,
author = 'keanteng', # Type in your name
author_email = 'u2004763@siswa.um.edu.my', # Type in your E-Mail
url = 'https://github.com/keanteng/blueautomata', # Provide either the link to your github or to your website
download_url = 'https://github.com/keanteng/blueautomata/archive/refs/tags/v_0.2.tar.gz', # I explain this later on
download_url = 'https://github.com/keanteng/blueautomata/archive/refs/tags/v_0.4.tar.gz', # I explain this later on
keywords = ['automation', 'vba', 'reporting', 'automate'], # Keywords that define your package best
packages = find_packages(),
install_requires=[ # I get to this in a second
'pandas',
'win32com.client',
Expand Down

0 comments on commit c9f1f75

Please sign in to comment.