-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
47 lines (41 loc) · 1.33 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
from setuptools import setup, find_packages
import os
path = os.path.abspath(os.path.dirname(__file__))
def read(filename):
with open(os.path.join(path, filename), encoding="utf-8") as f:
return f.read()
setup(
name="emissionsapi-worldmap-creator",
version="0.3",
description="Emissions API's World Map image creator",
author="Emissions API Developers",
license="MIT",
url="https://github.com/emissions-api/emissionsapi-worldmap-creator",
packages=find_packages(),
classifiers=[
"Development Status :: 4 - Beta",
"Environment :: Console",
"Framework :: Matplotlib",
"Intended Audience :: Science/Research",
"License :: OSI Approved :: MIT License",
"Natural Language :: English",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3 :: Only",
"Topic :: Scientific/Engineering :: GIS",
"Topic :: Scientific/Engineering :: Visualization",
],
install_requires=[
"geopandas",
"h3",
"matplotlib",
"descartes",
],
long_description=read("README.rst"),
long_description_content_type="text/x-rst",
entry_points={
"console_scripts": [
"emissionsapi-worldmap-creator"
" = emissionsapi_worldmap_creator.__main__:main"
]
},
)