forked from RallyTools/RallyRestToolkitForPython
- Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
Latest commit
52 lines (46 loc) · 1.65 KB
/
Copy pathsetup.py
File metadata and controls
52 lines (46 loc) · 1.65 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
#!/usr/bin/env python
# -*- coding: utf-8 -*-
importsys
try:
fromdistutils2.coreimportsetup
except:
try:
fromdistutils.coreimportsetup
except:
fromsetuptoolsimportsetup
PACKAGE='pyral'
VERSION='1.1.1'
OFFICIAL_NAME='Python toolkit for Rally REST API'
PKG_URL_NAME='python-toolkit-rally-rest-api'
AUTHOR='Kip Lehman (Rally Software Development)'
AUTHOR_EMAIL='klehman@rallydev.com'
GITHUB_SITE='https://github.com/RallyTools/RallyRestToolkitForPython'
GITHUB_DISTS='%s/blob/master/dists'%GITHUB_SITE
DOWNLOADABLE_ZIP='%s/%s-%s.zip'% (GITHUB_DISTS, PACKAGE, VERSION)
MINIMUM_REQUESTS_VERSION='2.0.0'
setup(name=PACKAGE,
version=VERSION,
description=OFFICIAL_NAME,
author=AUTHOR,
author_email=AUTHOR_EMAIL,
url=GITHUB_SITE,
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 :: 5 - Production/Stable',
'Environment :: Web Environment',
'Intended Audience :: Developers',
'License :: OSI Approved :: BSD License',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Programming Language :: Python :: 2.6',
'Programming Language :: Python :: 2.7',
'Topic :: Internet :: WWW/HTTP',
'Topic :: Software Development :: Libraries',
],
#documentation='http://readthedocs.org/docs/pyral'
)