-
Notifications
You must be signed in to change notification settings - Fork 35
/
Copy pathsetup.py
32 lines (29 loc) · 930 Bytes
/
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
from distutils.core import setup
import io
import setuptools
CLASSIFIERS = """\
Development Status :: 5 - Production/Stable
Intended Audience :: Science/Research
Intended Audience :: Developers
License :: OSI Approved
Programming Language :: Python
Programming Language :: Python :: 2
Programming Language :: Python :: 3
Topic :: Software Development
Operating System :: POSIX
Operating System :: Unix
"""
setup(
name="copt",
description="Library for composite optimization in Python",
long_description=io.open("README.rst", encoding="utf-8").read(),
version="0.9.1",
author="Fabian Pedregosa",
author_email="[email protected]",
url="http://pypi.python.org/pypi/copt",
packages=["copt"],
install_requires=["numpy", "scipy", "tqdm", "scikit-learn", "six"],
classifiers=[_f for _f in CLASSIFIERS.split("\n") if _f],
package_data={"copt": ["data/img1.csv"]},
license="New BSD License",
)