-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsetup.py
27 lines (26 loc) · 939 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
from setuptools import setup, find_packages
setup(
name='niquery',
version='0.0.2',
author='Nolan Nichols',
author_email='nolan.nichols@gmail.com',
packages=find_packages(exclude=["tests.*", "tests"]),
package_dir={"niquery": "niquery"},
include_package_data=True,
package_data={"niquery": ["sparql/*", "static/*"]},
scripts=["bin/niquery"],
url='http://pypi.python.org/pypi/niquery/',
license='Apache 2.0',
description='Framework to query neuroimaging databases as RDF.',
long_description=open('README.md').read(),
install_requires=["Flask-RESTful>=0.2",
"Flask>=0.10",
"celery>=3.1",
"prov>=0.5",
"rdflib>=4.1",
"requests>=2.3",
'pandas>=0.14',
'mock>=1.0',
'nipype',
'nibabel'],
)