-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathsetup.py
39 lines (37 loc) · 1.19 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
import os.path
from setuptools import setup, find_packages
def get_long_description():
dirname = os.path.dirname(__file__)
readme = os.path.join(dirname, 'README.txt')
f = open(readme, 'rb')
try:
return f.read()
finally:
f.close()
setup(
name='busyflow.pivotal',
version='0.3.5',
description='Pivotal API client library.',
long_description=get_long_description(),
author='Ignas Mikalajunas',
author_email='[email protected]',
url='http://github.com/nous-consulting/busyflow.pivotal/',
classifiers=['Development Status :: 4 - Beta',
'Environment :: Web Environment',
'Intended Audience :: Developers',
"License :: OSI Approved :: GNU General Public License (GPL)",
'Operating System :: OS Independent',
'Programming Language :: Python',
'Topic :: Internet :: WWW/HTTP'],
install_requires=[
'setuptools',
'xmlbuilder',
'python-dateutil',
'poster'],
package_dir={'': 'src'},
packages=find_packages('src'),
namespace_packages=['busyflow'],
include_package_data=True,
zip_safe=False,
license="GPL"
)