From 97fa4e27e899eaeb695b4444d350d50ee5801700 Mon Sep 17 00:00:00 2001 From: DUYN Date: Sat, 20 Jun 2020 13:18:06 +0200 Subject: [PATCH] Update setup --- setup.cfg | 2 ++ setup.py | 19 +++++++++++++++---- 2 files changed, 17 insertions(+), 4 deletions(-) create mode 100644 setup.cfg diff --git a/setup.cfg b/setup.cfg new file mode 100644 index 00000000..224a7795 --- /dev/null +++ b/setup.cfg @@ -0,0 +1,2 @@ +[metadata] +description-file = README.md \ No newline at end of file diff --git a/setup.py b/setup.py index 48653856..0d864d54 100644 --- a/setup.py +++ b/setup.py @@ -1,22 +1,33 @@ import setuptools +VERSION = "0.1" with open("README.md", "r") as fh: long_description = fh.read() setuptools.setup( name="investing_algorithm_framework", - version="0.0.1", + version=VERSION, + license="BSL-1.1", + author="coding kitties", description="A framework for creating an investment algorithm", long_description=long_description, long_description_content_type="text/markdown", url="https://github.com/investing-algorithms/investing-algorithm-framework.git", + download_url='https://github.com/investing-algorithms/investing-algorithm-framework/archive/v0.1.tar.gz', packages=setuptools.find_packages(exclude=['tests', 'tests.*']), + keywords=['INVESTING', 'BOT', 'ALGORITHM', 'FRAMEWORK'], classifiers=[ - "Programming Language :: Python :: 3", - "License :: OSI Approved :: Operating System :: OS Independent", + "Framework :: Investing Algorithm Framework", + "Intended Audience :: Developers", + 'Programming Language :: Python :: 3', + 'Programming Language :: Python :: 3.4', + 'Programming Language :: Python :: 3.5', + 'Programming Language :: Python :: 3.6', + "Topic :: Software Development", + "License :: Other/Proprietary License", ], install_requires=[ - 'colorama', 'wrapt', 'requests' + 'colorama', 'wrapt', 'requests', 'SQLAlchemy', 'pytest' ], python_requires='>=3.6', scripts=['bin/investing-algorithm-framework-admin'],