-
Notifications
You must be signed in to change notification settings - Fork 22
/
setup.py
60 lines (55 loc) · 1.37 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
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
#! /usr/bin/env python
DISTNAME = 'lyman'
DESCRIPTION = 'lyman: neuroimaging analysis in Python'
MAINTAINER = 'Michael Waskom'
MAINTAINER_EMAIL = '[email protected]'
LICENSE = 'BSD (3-clause)'
URL = 'http://www.cns.nyu.edu/~mwaskom/software/lyman/'
DOWNLOAD_URL = 'https://github.com/mwaskom/lyman'
VERSION = '2.0.1.dev0'
PYTHON_REQUIRES = ">=3.7"
INSTALL_REQUIRES = [
'numpy',
'scipy',
'pandas',
'matplotlib',
'pyyaml',
'traits',
'nibabel',
'nipype>=1.0',
]
PACKAGES = [
'lyman',
'lyman.tests',
'lyman.workflows',
'lyman.workflows.tests',
]
SCRIPTS = [
'scripts/lyman',
]
CLASSIFIERS = [
'Intended Audience :: Science/Research',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3.8',
'License :: OSI Approved :: BSD License',
'Operating System :: POSIX',
'Operating System :: Unix',
'Operating System :: MacOS',
]
if __name__ == '__main__':
from setuptools import setup
setup(
name=DISTNAME,
maintainer=MAINTAINER,
maintainer_email=MAINTAINER_EMAIL,
description=DESCRIPTION,
license=LICENSE,
version=VERSION,
url=URL,
download_url=DOWNLOAD_URL,
python_requires=PYTHON_REQUIRES,
install_requires=INSTALL_REQUIRES,
packages=PACKAGES,
scripts=SCRIPTS,
classifiers=CLASSIFIERS,
)