This repository has been archived by the owner on Oct 23, 2019. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 19
/
setup.py
63 lines (52 loc) · 1.58 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
50
51
52
53
54
55
56
57
58
59
60
61
62
63
import os
from setuptools import setup, find_packages
PYPI_RESTRUCTURED_TEXT_INFO = \
"""
Basic Example
-------------
::
from assembla import API
assembla = API(
key='8a71541e5fb2e4741120',
secret='a260dc4448c81c907fc7c85ad09d31306c425417',
# Auth details from https://www.assembla.com/user/edit/manage_clients
)
my_space = assembla.spaces(name='My Space')[0]
for ticket in my_space.tickets():
print '#{0} - {1}'.format(ticket['number'], ticket['summary'])
# >>> #1 - My first ticket
# >>> #2 - My second ticket
# ...
Full documentation at http://github.com/markfinger/assembla
"""
setup(
name = 'assembla',
version = '2.8.0',
packages = find_packages(),
install_requires = [
'requests',
],
package_data = {'assembla': []},
entry_points = {},
# metadata for upload to PyPI
author = 'Mark Finger',
author_email = '[email protected]',
description = 'Python wrapper for the Assembla API',
license = 'MIT',
platforms=['any'],
keywords = 'Assembla API',
url = 'http://github.com/markfinger/assembla/',
long_description = PYPI_RESTRUCTURED_TEXT_INFO,
classifiers = [
'Development Status :: 5 - Production/Stable',
'Intended Audience :: Developers',
'Topic :: Software Development',
'Operating System :: OS Independent',
'Programming Language :: Python',
'License :: OSI Approved :: MIT License',
'Programming Language :: Python',
'Programming Language :: Python :: 2',
'Programming Language :: Python :: 3',
],
use_2to3 = True,
)