From bc48285ab7332c485c00eb5e0470ff48d25857ce Mon Sep 17 00:00:00 2001 From: Geek-ubaid Date: Sat, 11 Jul 2020 00:33:05 +0530 Subject: [PATCH] fixed setup.py --- setup.py | 43 ++++++++++++++++--------------------------- 1 file changed, 16 insertions(+), 27 deletions(-) diff --git a/setup.py b/setup.py index 40b4f98..63e37d1 100644 --- a/setup.py +++ b/setup.py @@ -2,10 +2,7 @@ import re import codecs -from setuptools import setup, find_packages - - -REQUIREMENTS = ['gdown==3.11.1', 'requests==2.24.0', 'tensorflow', 'spacy==2.2.0', 'pandas', "transformers", "torch"] +from setuptools import setup def read(rel_path): here = os.path.abspath(os.path.dirname(__file__)) @@ -23,26 +20,18 @@ def get_version(rel_path): # Metadata goes in setup.cfg. These are here for GitHub's dependency graph. setup( - name="forest_utils", - version=get_version('VERSION.txt'), - description="Utility Package for SmokeTrees Model Zoo", - long_description=get_long_description(), - url="https://github.com/smoke-trees/forest-utils", - author="SmokeTrees", - author_email=" info@smoketrees.dev", - python_requires='>=3.6', - packages=find_packages(include=[ - "forest_utils.*" - ], exclude=["test.*, test"]), - include_package_data=True, - classifiers=[ - "Development Status :: 4 - Beta", - "License :: OSI Approved :: GNU General Public License v3 (GPLv3)", - "Programming Language :: Python :: 3", - "Programming Language :: Python :: 3 :: Only", - "Programming Language :: Python :: 3.6", - "Programming Language :: Python :: Implementation :: CPython" - ], - install_requires=REQUIREMENTS, - keywords='utils package modelzoo' -) + name="forest-utils", + version=get_version('VERSION.txt'), + author="Smoketrees", + author_email=" info@smoketrees.dev", + install_requires=[ + 'gdown==3.11.1', + 'requests==2.24.0', + 'tensorflow', + 'spacy==2.2.0', + 'pandas', + 'click', + 'transformers', + 'torch' + ], +) \ No newline at end of file