forked from lasso-net/lassonet
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
executable file
·35 lines (31 loc) · 979 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
33
34
35
from setuptools import setup
from pathlib import Path
def read(fname):
return (Path(__file__).parent / fname).open().read()
setup(
name="lassonet",
version="0.0.10",
author="Louis Abraham, Ismael Lemhadri",
author_email="[email protected], [email protected]",
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",
],
tests_require=["pytest"],
python_requires=">=3.8",
)