forked from poldracklab/fitlins
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
54 lines (46 loc) · 1.83 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
#!/usr/bin/env python
# -*- coding: utf-8 -*-
""" fitlins setup script """
def main():
""" Install entry-point """
from io import open
from os import path as op
from inspect import getfile, currentframe
from setuptools import setup, find_packages
this_path = op.dirname(op.abspath(getfile(currentframe())))
# Python 3: use a locals dictionary
# http://stackoverflow.com/a/1463370/6820620
ldict = locals()
# Get version and release info, which is all stored in fitlins/__about__.py
module_file = op.join(this_path, 'fitlins', '__about__.py')
with open(module_file) as infofile:
pythoncode = [line for line in infofile.readlines() if not line.strip().startswith('#')]
exec('\n'.join(pythoncode), globals(), ldict)
extensions = []
setup(
name=ldict['__packagename__'],
version=ldict['__version__'],
description=ldict['__description__'],
long_description=ldict['__longdesc__'],
author=ldict['__author__'],
author_email=ldict['__email__'],
maintainer=ldict['__maintainer__'],
maintainer_email=ldict['__email__'],
url=ldict['__url__'],
license=ldict['__license__'],
classifiers=ldict['CLASSIFIERS'],
download_url=ldict['DOWNLOAD_URL'],
# Dependencies handling
setup_requires=ldict['SETUP_REQUIRES'],
install_requires=ldict['REQUIRES'],
tests_require=ldict['TESTS_REQUIRES'],
extras_require=ldict['EXTRA_REQUIRES'],
dependency_links=ldict['LINKS_REQUIRES'],
package_data={'fitlins': ['data/fitlins.json', 'data/*.tpl']},
entry_points={'console_scripts': ['fitlins=fitlins.cli.run:main']},
packages=find_packages(exclude=("tests",)),
zip_safe=False,
ext_modules=extensions
)
if __name__ == '__main__':
main()