prototorch/setup.py

51 lines
1.7 KiB
Python
Raw Normal View History

2020-02-17 17:02:52 +00:00
"""Install ProtoTorch."""
from setuptools import setup
from setuptools import find_packages
PROJECT_URL = 'https://github.com/si-cim/prototorch'
DOWNLOAD_URL = 'https://github.com/si-cim/prototorch.git'
with open('README.md', 'r') as fh:
long_description = fh.read()
setup(name='prototorch',
2020-04-27 10:56:42 +00:00
version='0.1.1-rc0',
2020-02-17 17:02:52 +00:00
description='Highly extensible, GPU-supported '
'Learning Vector Quantization (LVQ) toolbox '
'built using PyTorch and its nn API.',
long_description=long_description,
long_description_content_type='text/markdown',
author='Jensun Ravichandran',
author_email='jjensun@gmail.com',
url=PROJECT_URL,
download_url=DOWNLOAD_URL,
license='MIT',
install_requires=[
'torch>=1.3.1',
2020-04-05 11:31:06 +00:00
'torchvision>=0.5.0',
2020-02-17 17:02:52 +00:00
'numpy>=1.9.1',
],
extras_require={
2020-07-30 09:19:02 +00:00
'datasets': ['requests', 'tqdm'],
'examples': [
'sklearn',
'matplotlib',
2020-02-17 17:02:52 +00:00
],
2020-04-06 15:45:15 +00:00
'tests': ['pytest'],
2020-02-17 17:02:52 +00:00
},
classifiers=[
2020-04-05 11:31:06 +00:00
'Development Status :: 2 - Pre-Alpha', 'Environment :: Console',
'Intended Audience :: Developers', 'Intended Audience :: Education',
2020-02-17 17:02:52 +00:00
'Intended Audience :: Science/Research',
'License :: OSI Approved :: MIT License',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3.8',
2020-02-17 17:02:52 +00:00
'Operating System :: OS Independent',
2020-04-05 11:31:06 +00:00
'Topic :: Scientific/Engineering :: Artificial Intelligence',
2020-02-17 17:02:52 +00:00
'Topic :: Software Development :: Libraries',
'Topic :: Software Development :: Libraries :: Python Modules'
],
packages=find_packages())