Uh oh!
There was an error while loading. Please reload this page.
- Notifications
You must be signed in to change notification settings - Fork 77
Expand file tree
/
Copy pathsetup.py
More file actions
Latest commit
55 lines (49 loc) · 1.98 KB
/
Copy pathsetup.py
File metadata and controls
55 lines (49 loc) · 1.98 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
#!/usr/bin/env python
# -*- coding: utf-8 -*-
fromsetuptoolsimportsetup
PACKAGE='pyral'
VERSION='1.7.0'
OFFICIAL_NAME='Python toolkit for Rally REST API'
PKG_URL_NAME='python-toolkit-rally-rest-api'
AUTHOR='Kip Lehman (Broadcom, Agile Operations Division)'
AUTHOR_EMAIL='kip.lehman@broadcom.com'
LICENSE='BSD-3-Clause'
KEYWORDS= ['rally', 'api']
GITHUB_SITE='https://github.com/RallyTools/RallyRestToolkitForPython'
GITHUB_DISTS='%s/raw/master/dists'%GITHUB_SITE
DOWNLOADABLE_ZIP='%s/%s-%s.zip'% (GITHUB_DISTS, PACKAGE, VERSION)
SHORT_DESCRIPTION='README.short'
FULL_DESCRIPTION='README.rst'
fromosimportpath
desc_file=path.join(path.abspath(path.dirname(__file__)), FULL_DESCRIPTION)
withopen(desc_file, encoding='utf-8') asdf: long_description=df.read()
MINIMUM_REQUESTS_VERSION='2.31.2'
REQUIRES= [ 'requests>=%s'%MINIMUM_REQUESTS_VERSION ]
PLATFORM='any'
CLASSIFIERS= [ 'Development Status :: 5 - Production/Stable',
'Environment :: Web Environment',
'Intended Audience :: Developers',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Programming Language :: Python :: 3.12',
'Programming Language :: Python :: 3.13',
'Programming Language :: Python :: 3.14',
'Topic :: Internet :: WWW/HTTP',
'Topic :: Software Development :: Libraries',
]
DOCUMENTATION='http://pyral.readthedocs.io/en/latest/'
setup(name=PACKAGE,
packages=[PACKAGE],
version=VERSION,
description=OFFICIAL_NAME,
author=AUTHOR,
author_email=AUTHOR_EMAIL,
url=GITHUB_SITE,
download_url=DOWNLOADABLE_ZIP,
long_description=long_description,
license=LICENSE,
keywords=KEYWORDS,
install_requires=REQUIRES,
classifiers=CLASSIFIERS,
python_requires='>=3.12'
)