Skip to content

Commit

Permalink
pypi publish
Browse files Browse the repository at this point in the history
  • Loading branch information
keanteng committed Sep 7, 2023
1 parent 0e59391 commit 8804a71
Show file tree
Hide file tree
Showing 6 changed files with 14 additions and 10 deletions.
9 changes: 4 additions & 5 deletions BlueAutomata.egg-info/PKG-INFO
Original file line number Diff line number Diff line change
@@ -1,17 +1,16 @@
Metadata-Version: 2.1
Name: BlueAutomata
Version: 0.1
Version: 0.2
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.1.tar.gz
Download-URL: https://github.com/keanteng/blueautomata/archive/refs/tags/v_0.2.tar.gz
Author: keanteng
Author-email: u2004763@siswa.um.edu.my
License: MIT
Keywords: automation,vba,reporting
Classifier: Development Status :: 4 - Beta
Keywords: automation,vba,reporting,automate
Classifier: Development Status :: 5 - Production/Stable
Classifier: Intended Audience :: Developers
Classifier: Topic :: Software Development :: Build Tools
Classifier: License :: OSI Approved :: MIT License
Classifier: Programming Language :: Python :: 3.11
License-File: LICENSE
License-File: LICENSE.txt
3 changes: 2 additions & 1 deletion BlueAutomata.egg-info/SOURCES.txt
Original file line number Diff line number Diff line change
@@ -1,4 +1,3 @@
LICENSE
LICENSE.txt
README.md
setup.cfg
Expand All @@ -7,6 +6,8 @@ BlueAutomata/__init__.py
BlueAutomata/automation_report.py
BlueAutomata/batch_export.py
BlueAutomata/data_compilation.py
BlueAutomata/inconsistency.py
BlueAutomata/system_cube.py
BlueAutomata/to_vba.py
BlueAutomata.egg-info/PKG-INFO
BlueAutomata.egg-info/SOURCES.txt
Expand Down
2 changes: 2 additions & 0 deletions BlueAutomata.egg-info/requires.txt
Original file line number Diff line number Diff line change
@@ -1,2 +1,4 @@
pandas
win32com.client
fuzzywuzzy
python-Levenshtein
Binary file added __pycache__/setup.cpython-311.pyc
Binary file not shown.
Binary file added dist/BlueAutomata-0.2.tar.gz
Binary file not shown.
10 changes: 6 additions & 4 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,20 +2,22 @@
setup(
name = 'BlueAutomata', # How you named your package folder (MyLib)
packages = ['BlueAutomata'], # Chose the same as "name"
version = '0.1', # Start with a small number and increase it with every change you make
version = '0.2', # 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
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.1.tar.gz', # I explain this later on
keywords = ['automation', 'vba', 'reporting'], # Keywords that define your package best
download_url = 'https://github.com/keanteng/blueautomata/archive/refs/tags/v_0.2.tar.gz', # I explain this later on
keywords = ['automation', 'vba', 'reporting', 'automate'], # Keywords that define your package best
install_requires=[ # I get to this in a second
'pandas',
'win32com.client',
'fuzzywuzzy',
'python-Levenshtein',
],
classifiers=[
'Development Status :: 4 - Beta', # Chose either "3 - Alpha", "4 - Beta" or "5 - Production/Stable" as the current state of your package
'Development Status :: 5 - Production/Stable', # Chose either "3 - Alpha", "4 - Beta" or "5 - Production/Stable" as the current state of your package
'Intended Audience :: Developers', # Define that your audience are developers
'Topic :: Software Development :: Build Tools',
'License :: OSI Approved :: MIT License', # Again, pick a license
Expand Down

0 comments on commit 8804a71

Please sign in to comment.