-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsetup.py
executable file
·63 lines (59 loc) · 2.11 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
#!/usr/bin/env python
from setuptools import setup, find_packages
def readme():
with open('README.md') as f:
return f.read()
setup(
name='ashlar',
version='1.0.0',
author='Azavea, Inc.',
author_email='[email protected]',
description='A flexible schema framework for geospatial data.',
long_description=readme(),
long_description_content_type='text/markdown',
url='https://github.com/azavea/ashlar',
license='MIT',
keywords='gis jsonschema',
packages=find_packages(exclude=['tests']),
python_requires=">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*",
install_requires=[
'Django ~=1.11',
'djangorestframework >=3.8.0',
'djangorestframework-gis >=0.8.1',
'django-filter >=1.1.0',
'django-extensions >=1.6.1',
'jsonschema >=2.4.0',
'psycopg2-binary >=2.6',
'python-dateutil >=2.4.2',
'djsonb >= 0.2.3',
'PyYAML >=3.11',
'pytz >=2015.7',
'requests >=2.8.1',
'six >= 1.1.0'
],
classifiers=[
'Development Status :: 5 - Production/Stable',
'Topic :: Database',
'Topic :: Database :: Database Engines/Servers',
'Topic :: Database :: Front-Ends',
'Topic :: Internet :: WWW/HTTP',
'Topic :: Internet :: WWW/HTTP :: Dynamic Content',
'Topic :: Internet :: WWW/HTTP :: WSGI',
'Topic :: Internet :: WWW/HTTP :: WSGI :: Server',
'Topic :: Software Development :: Libraries',
'Topic :: Software Development :: Libraries :: Application Frameworks',
'Environment :: Web Environment',
'Intended Audience :: Developers',
'License :: OSI Approved :: MIT License',
'Programming Language :: Python',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3.4',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
'Framework :: Django',
'Framework :: Django :: 1.8',
'Framework :: Django :: 1.11',
'Framework :: Django :: 2.0',
'Operating System :: OS Independent',
],
)