-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
35 lines (30 loc) · 878 Bytes
/
setup.py
File metadata and controls
35 lines (30 loc) · 878 Bytes
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
# setup.py
from setuptools import setup
PACKAGE = ['stabSelect', 'exclGroupLasso']
NAME = 'excl-select'
DESCRIPTION = 'Exclusive Lasso with stability selection and random group allocation.'
AUTHOR = 'Yuxin Sun'
AUTHOR_EMAIL = 'yuxin.sun.13@ucl.ac.uk'
URL = 'https://github.com/YuxinSun/Stability-Selection'
setup(
name=NAME,
version='1.0',
description=DESCRIPTION,
author=AUTHOR,
author_email=AUTHOR_EMAIL,
license='MIT',
url=URL,
packages=PACKAGE,
install_requires=[
'numpy',
'scipy',
'scikit-learn'],
classifiers=[
'Development Status :: 1',
'Intended Audience :: Science/Research',
'License :: OSI Approved :: MIT License',
'Operating System :: OS Independent',
'Programming Language :: Python'],
long_description=open('README.md').read(),
zip_safe=False,
)