Skip to content

Commit fbd4402

Browse files
authored
update setup information (#7)
1 parent 72a1a0b commit fbd4402

File tree

1 file changed

+16
-1
lines changed

1 file changed

+16
-1
lines changed

setup.py

Lines changed: 16 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,8 +11,23 @@
1111
if version is None:
1212
raise RuntimeError('Could not determine version')
1313

14-
setup(name="skglm",
14+
DISTNAME = 'skglm'
15+
DESCRIPTION = 'Fast and modular scikit-learn replacement for generalized linear models'
16+
MAINTAINER = 'Mathurin Massias'
17+
MAINTAINER_EMAIL = '[email protected]'
18+
LICENSE = 'BSD (3-clause)'
19+
DOWNLOAD_URL = 'https://github.com/scikit-learn-contrib/skglm.git'
20+
VERSION = version
21+
URL = 'https://contrib.scikit-learn.org/skglm'
22+
23+
setup(name=DISTNAME,
1524
version=version,
25+
description=DESCRIPTION,
26+
long_description=open('README.rst').read(),
27+
maintainer=MAINTAINER,
28+
maintainer_email=MAINTAINER_EMAIL,
29+
url=URL,
30+
download_url=DOWNLOAD_URL,
1631
packages=find_packages(),
1732
install_requires=['libsvmdata>=0.2', 'numpy>=1.12', 'numba',
1833
'seaborn>=0.7',

0 commit comments

Comments
 (0)