-
Notifications
You must be signed in to change notification settings - Fork 1
/
setup.py
35 lines (30 loc) · 981 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
import os
from setuptools import setup, find_packages
PACKAGES = find_packages()
# Get version and release info, which is all stored in nidm/version.py
ver_file = os.path.join('version.py')
with open(ver_file) as f:
exec(f.read())
opts = dict(name=NAME,
maintainer=MAINTAINER,
maintainer_email=MAINTAINER_EMAIL,
description=DESCRIPTION,
long_description=LONG_DESCRIPTION,
url=URL,
download_url=DOWNLOAD_URL,
license=LICENSE,
classifiers=CLASSIFIERS,
author=AUTHOR,
author_email=AUTHOR_EMAIL,
version=VERSION,
packages=PACKAGES,
scripts=SCRIPTS,
install_requires=INSTALL_REQUIRES,
#requires=INSTALL_REQUIRES,
entry_points='''
[console_scripts]
bids_term_to_tablem=utils.bidsterms2pdf:main
'''
)
if __name__ == '__main__':
setup(**opts)