-
Notifications
You must be signed in to change notification settings - Fork 9
/
setup.py
31 lines (30 loc) · 1.18 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
from setuptools import setup, find_packages
setup(name='cartographer',
version='0.2.0-alpha5',
description='Python library for using JSON API, especially with Flask.',
url='http://github.com/Patreon/cartographer',
author='Patreon',
author_email='[email protected]',
license='Apache 2.0',
packages=find_packages(exclude=['example', 'example.*', 'test', 'test.*']),
install_requires=[
'python-dateutil>=2.4.2',
'ciso8601>=1.0.1'
],
zip_safe=True,
classifiers=[
'Development Status :: 2 - Pre-Alpha',
'Environment :: Web Environment',
'Framework :: Flask',
'Intended Audience :: Developers',
'License :: OSI Approved :: Apache Software License',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.4',
'Programming Language :: Python :: 3.5',
'Topic :: Internet :: WWW/HTTP',
'Topic :: Internet :: WWW/HTTP :: Dynamic Content',
'Topic :: Software Development :: Libraries :: Python Modules',
]
)