-
Notifications
You must be signed in to change notification settings - Fork 17
/
Copy pathsetup.py
34 lines (30 loc) · 1023 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
import sys
from setuptools import setup, find_packages
import versioneer
if len(set(('test', 'easy_install')).intersection(sys.argv)) > 0:
import setuptools
tests_require = ["pytest>=3.3.0"]
VERSION=versioneer.get_version()
setup(
name="grabbit",
version=VERSION,
cmdclass=versioneer.get_cmdclass(),
description="get grabby with file trees",
maintainer='Tal Yarkoni',
maintainer_email='[email protected]',
url='http://github.com/grabbles/grabbit',
packages=find_packages(),
include_package_data=True,
install_requires=[],
tests_require=tests_require,
license='MIT',
download_url='http://github.com/grabbles/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',
]
)