forked from hulu/restfulgit
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
executable file
·57 lines (47 loc) · 1.57 KB
/
setup.py
File metadata and controls
executable file
·57 lines (47 loc) · 1.57 KB
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
55
56
57
#!/usr/bin/env python
from distutils.core import setup
import os
import sys
NAME = 'restfulgit'
VERSION = '0.1.0'
MIN_PYTHON_VERSION = (2, 7)
MIN_UNSUPPORTED_VERSION = 3
CLASSIFIERS = [
'Development Status :: 2 - Beta',
'Environment :: Web Environment',
'Framework :: Flask',
'Intended Audience :: Developers',
'License :: OSI Approved :: MIT License',
'Operating System :: POSIX :: Linux',
'Programming Language :: Python :: 2.7',
'Topic :: Internet :: WWW/HTTP :: WSGI :: Application',
'Topic :: Software Development :: Libraries',
'Topic :: Software Development :: Version Control'
]
if sys.version_info < MIN_PYTHON_VERSION or sys.version_info[0] >= MIN_UNSUPPORTED_VERSION:
raise Exception(
'%s==%s requires Python >= %s and Python < %d' % (
NAME,
VERSION,
'.'.join([str(x) for x in MIN_PYTHON_VERSION]),
MIN_UNSUPPORTED_VERSION
)
)
with open(os.path.join(os.path.dirname(__file__), 'requirements.txt')) as f:
requirements = f.readlines()
setup(
name=NAME,
version=VERSION,
description='A restful interface for accessing data from Git repositories',
long_description=open('README.md').read(),
classifiers=CLASSIFIERS,
maintainer='Chris Rebert',
maintainer_email='chris.rebert@hulu.com',
author='Rajiv Makhijani',
url='https://github.com/hulu/restfulgit',
provides=[NAME],
packages=['restfulgit', 'restfulgit.plumbing', 'restfulgit.porcelain',
'restfulgit.utils'],
zip_safe=True,
install_requires=requirements
)