-
Notifications
You must be signed in to change notification settings - Fork 10
/
Copy pathsetup.py
25 lines (24 loc) · 1 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
'''setup.py for tyler'''
from setuptools import setup, find_packages
from tyler.version import __VERSION__
setup(
name = 'tyler',
version = __VERSION__,
description = 'Python webservice for tiling static maps',
author = 'Ben Cardy',
packages = find_packages(),
install_requires = ['django', 'django-cacheback', 'requests', 'Pillow',],
include_package_data = True,
test_suite = 'setuptest.setuptest.SetupTestSuite',
tests_require = ['django-autoconfig', 'django-setuptest'],
classifiers = [
'Development Status :: 3 - Alpha',
'Intended Audience :: Developers',
'License :: OSI Approved :: GNU General Public License v3 or later (GPLv3+)',
'Framework :: Django',
'Programming Language :: Python',
'Programming Language :: Python :: 2',
'Programming Language :: Python :: 2.7',
],
)