Skip to content

Commit

Permalink
Update setup.py to include more arguments
Browse files Browse the repository at this point in the history
  • Loading branch information
gundamMC committed Mar 16, 2019
1 parent c4d1fc4 commit 4976879
Showing 1 changed file with 26 additions and 13 deletions.
39 changes: 26 additions & 13 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,19 +4,32 @@
long_description = fh.read()

setuptools.setup(
name='animius',
version='1.0',
author="gundamMC",
author_email="[email protected]",
description="A deep-learning virtual assistant engine",
long_description=long_description,
long_description_content_type="text/markdown",
url="https://github.com/gundamMC/Animius",
packages=setuptools.find_packages(),
python_requires='>=3',
install_requires=['numpy', 'pysubs2', 'pydub', 'scipy', 'speechpy'],
extras_require={
name='animius',
version='1.0.0a1',
author="gundamMC",
author_email="[email protected]",
description="A deep-learning virtual assistant engine",
long_description=long_description,
long_description_content_type="text/markdown",
url="https://animius.org",
packages=setuptools.find_packages(),
python_requires='>=3',
install_requires=['numpy', 'pysubs2', 'pydub', 'scipy', 'speechpy'],
extras_require={
"tf": ["tensorflow==1.12.0"],
"tf_gpu": ["tensorflow-gpu==1.12.0"],
} # tf 2.0 not supported for now
}, # tf 2.0 not supported for now
classifiers=[
'Intended Audience :: Developers',
'Programming Language :: Python :: 3',
'License :: OSI Approved :: Apache Software License',
'Topic :: Scientific/Engineering',
'Topic :: Scientific/Engineering :: Mathematics',
'Topic :: Scientific/Engineering :: Artificial Intelligence',
'Topic :: Software Development',
'Topic :: Software Development :: Libraries',
'Topic :: Software Development :: Libraries :: Python Modules',
],
license='Apache 2.0',
keywords='animius ai virtual assistant deep learning',
)

0 comments on commit 4976879

Please sign in to comment.