-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
46 lines (43 loc) · 1.04 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
#!/usr/bin/python
# -*- coding: UTF-8 -*-
from setuptools import setup, find_packages
import os
reqs = [
'mock',
'coveralls',
'sphinx',
'mako',
'pymongo',
'shortuuid',
'pyramid',
'pyramid_mako',
'waitress',
]
try:
import pypandoc
README = pypandoc.convert('README.md', 'rst')
except (IOError, ImportError):
README = ''
setup(name='niprov',
version='0.5',
author='Jasper J.F. van den Bosch',
author_email='[email protected]',
description='provenance for neuroimaging data',
packages=find_packages(),
url = 'https://github.com/ilogue/niprov',
test_suite="tests",
scripts=['executables/provenance'],
zip_safe=False,
license='BSD',
long_description=README,
classifiers=[
'License :: OSI Approved :: BSD License',
'Intended Audience :: Science/Research',
'Topic :: Scientific/Engineering'],
install_requires=reqs,
include_package_data=True,
entry_points="""\
[paste.app_factory]
main = niprov:main
""",
)