-
Notifications
You must be signed in to change notification settings - Fork 14
/
setup.py
33 lines (30 loc) · 1.01 KB
/
setup.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
from setuptools import find_packages
from setuptools import setup
CLASSIFIERS = """\
Development Status :: 3 - Alpha
Intended Audience :: Science/Research
Intended Audience :: Developers
License :: OSI Approved :: BSD License
Programming Language :: Python
Programming Language :: Python :: 3
Topic :: Software Development
Operating System :: POSIX
Operating System :: Unix
"""
with open("README.md", 'r', encoding='utf-8') as f:
README = f.read()
setup(
name="chop-pytorch",
description="Continuous and constrained optimization with PyTorch",
long_description=README,
long_description_content_type='text/markdown',
version="0.0.3",
author="Geoffrey Negiar",
author_email="geoffrey_negiar@berkeley.edu",
url="http://pypi.python.org/pypi/chop-pytorch",
packages=find_packages(),
install_requires=["numpy", "scipy", "torch", "torchvision",
"easydict", "matplotlib", "tqdm"],
setup_requires=['wheel'],
classifiers=[_f for _f in CLASSIFIERS.split("\n") if _f],
)