-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
30 lines (28 loc) · 1.13 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
from distutils.core import setup
import setuptools
setup(name='pychoropleth',
version='0.2.3',
description='A simple library to create choropleth maps from geopandas dataframes using mplleaflet',
packages=setuptools.find_packages(),
author='Sebastiano Milardo',
author_email='milardo@mit.edu',
license = 'MIT',
install_requires = ['mplleaflet','matplotlib','pandas','numpy','geopandas','shapely','osmnx','descartes'],
url = 'https://github.com/SebMilardo/pychoropleth',
project_urls={
'source': 'https://github.com/SebMilardo/pychoropleth/',
},
zip_safe=False,
long_description=open('README.md').read(),
long_description_content_type="text/markdown",
classifiers = ['Development Status :: 3 - Alpha',
'Environment :: Console',
'Intended Audience :: Developers',
'Intended Audience :: Science/Research',
'License :: OSI Approved :: MIT License',
'Natural Language :: English',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Topic :: Software Development :: Libraries :: Python Modules',
'Programming Language :: Python :: 3']
)