-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathsetup.py
executable file
·41 lines (40 loc) · 1.27 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
34
35
36
37
38
39
40
41
from setuptools import setup, find_packages
import versioneer
setup(
name="c-lasso",
version=versioneer.get_version(),
cmdclass=versioneer.get_cmdclass(),
license="MIT",
author="Leo Simpson",
url="https://github.com/Leo-Simpson/CLasso",
author_email="[email protected]",
description="Algorithms for constrained Lasso problems",
packages=["classo"],
install_requires=["numpy", "h5py", "scipy"],
extras_require={
"tests": ["pytest", "pytest-cov"],
"docs": [
"sphinx",
"sphinx-gallery",
"sphinx_rtd_theme",
"numpydoc",
"matplotlib",
"pandas",
],
},
classifiers=[
"Intended Audience :: Science/Research",
"Operating System :: Microsoft :: Windows",
"Operating System :: POSIX",
"Operating System :: Unix",
"Operating System :: MacOS",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
],
long_description_content_type="text/markdown",
long_description=open("README.md").read(),
zip_safe=False,
)