forked from RallyTools/RallyRestToolkitForPython
-
Notifications
You must be signed in to change notification settings - Fork 1
/
setup.py
49 lines (43 loc) · 1.61 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
47
48
49
#!/usr/bin/env python
# -*- coding: utf-8 -*-
import sys
try:
from distutils2.core import setup
except:
try:
from distutils.core import setup
except:
from setuptools import setup
PACKAGE = 'pyral'
VERSION = '0.9.3'
OFFICIAL_NAME = 'Python toolkit for Rally REST API'
PKG_URL_NAME = 'python-toolkit-rally-rest-api'
RALLY_DEVELOPER_SITE = 'http://developer.rallydev.com'
RALLY_DEVELOPER_DOWNLOAD_FILES = '%s/sites/default/files/multimedia' % RALLY_DEVELOPER_SITE
DOWNLOADABLE_ZIP = '%s/%s-%s.zip' % (RALLY_DEVELOPER_DOWNLOAD_FILES, PACKAGE, VERSION)
MINIMUM_REQUESTS_VERSION = '0.9.3'
setup(name=PACKAGE,
version=VERSION,
description=OFFICIAL_NAME,
author='Kip Lehman (Rally Software Development)',
author_email='[email protected]',
url='%s/help/%s' % (RALLY_DEVELOPER_SITE, PKG_URL_NAME),
download_url=DOWNLOADABLE_ZIP,
long_description=open('README.rst').read(),
packages=[PACKAGE],
license='BSD',
requires=["python (< 3.0)"],
#install_requires=['requests>=%s' % MINIMUM_REQUESTS_VERSION],
classifiers=[
'Development Status :: 4 - Beta',
'Environment :: Web Environment',
'Intended Audience :: Developers',
'License :: OSI Approved :: BSD License',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Programming Language :: Python :: 2.6',
'Topic :: Internet :: WWW/HTTP',
'Topic :: Software Development :: Libraries',
],
#documentation='http://readthedocs.org/docs/pyral'
)