-
Notifications
You must be signed in to change notification settings - Fork 54
/
setup.py
executable file
·43 lines (38 loc) · 1.08 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
42
43
from pathlib import Path
from setuptools import setup
def read(fname):
return (Path(__file__).parent / fname).open().read()
setup(
name="lassonet",
version="0.0.20",
author="Louis Abraham, Ismael Lemhadri",
author_email="louis.abraham@yahoo.fr, lemhadri@stanford.edu",
license="MIT",
description="Reference implementation of LassoNet",
long_description=read("README.md"),
long_description_content_type="text/markdown",
url="https://github.com/lasso-net/lassonet",
classifiers=[
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Topic :: Scientific/Engineering :: Artificial Intelligence",
"Operating System :: OS Independent",
],
packages=["lassonet"],
install_requires=[
"torch >= 1.11",
"scikit-learn",
"matplotlib",
"sortedcontainers",
"tqdm",
],
extras_require={
"dev": [
"pre-commit",
"sphinx",
"black",
]
},
tests_require=["pytest"],
python_requires=">=3.8",
)