Skip to content

Commit

Permalink
Merge pull request #17 from smoke-trees/dev
Browse files Browse the repository at this point in the history
Sync changes for major release of v0.0.9
  • Loading branch information
Geek-ubaid authored Jul 10, 2020
2 parents 220d6ba + 5f54358 commit 79499b4
Showing 1 changed file with 16 additions and 27 deletions.
43 changes: 16 additions & 27 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -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__))
Expand All @@ -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'
],
)

0 comments on commit 79499b4

Please sign in to comment.