-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
32 lines (28 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
import sys
from setuptools import setup, find_packages
if len(set(('test', 'easy_install')).intersection(sys.argv)) > 0:
import setuptools
tests_require = []
VERSION = "0.0.1"
setup(
name="grabbit",
version=VERSION,
description="get grabby with data structures",
maintainer='BIDS people',
maintainer_email='tyarkoni@gmail.com',
url='http://github.com/INCF/grabbit',
packages=find_packages(exclude=['tests', 'test_*']),
package_data={'grabbit.tests': ['data/*']},
install_requires=['six'],
tests_require=tests_require,
license='MIT',
download_url='http://github.com/INCF/grabbit/archive/%s.tar.gz' % VERSION,
classifiers=[
'License :: OSI Approved :: MIT License',
'Programming Language :: Python :: 2',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.3',
'Programming Language :: Python :: 3.4',
]
)