-
Notifications
You must be signed in to change notification settings - Fork 3
/
setup.py
39 lines (36 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
from distutils.core import setup
def read(*rnames):
return open(os.path.join(os.path.dirname(__file__), *rnames)).read()
setup(
name="tools4msp",
version="4.0.0-beta.1",
author="Stefano Menegon",
author_email="stefano.menegon@ismar.cnr.it",
description="Tools 4 MSP",
long_description=(read('README.md')),
# Full list of classifiers can be found at:
# http://pypi.python.org/pypi?%3Aaction=list_classifiers
classifiers=[
'Development Status :: 4 - Beta',
],
license="GPL3",
keywords="Maritime Spatial Planning",
url='http://data.adriplan.eu',
packages=['tools4msp',],
include_package_data=True,
zip_safe=False,
install_requires=['django-import-export',
'matplotlib',
'jsonfield',
'pandas',
'geopandas',
'django-extensions',
'django-filter',
'django-import-export',
'django-rest-swagger',
'djangorestframework',
'djangorestframework-gis',
'django-cleanup',
],
)