-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathsetup.py
More file actions
24 lines (23 loc) · 704 Bytes
/
Copy pathsetup.py
File metadata and controls
24 lines (23 loc) · 704 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
from setuptools import setup, find_packages
setup(
name='django-measurements',
version='0.30',
# packages=['measurements'],
packages=find_packages(),
url='',
license='GPL3',
author='Stefano Menegon',
author_email='stefano.menegon@cnr.it',
description='',
install_requires=['requests',
'pycryptodome',
'django-postgres-extra',
'django_pandas',
'geojson',
'colorbrewer',
'django-basicauth',
'lxml',
'beautifulsoup4',
'pint',
'django-leaflet']
)