-
Notifications
You must be signed in to change notification settings - Fork 1
/
setup.py
50 lines (47 loc) · 1.72 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
"""Used to setup package file creation.
"""
from codecs import open as codec_open
from os import path
from setuptools import setup, find_packages
HERE = path.abspath(path.dirname(__file__))
with codec_open(path.join(HERE, "README.md"), encoding='utf-8') as f:
LONG_DESC = f.read()
setup(
name="wsdottraffic",
version="3.1.0",
description="Retrieves data from WSDOT Traffic API",
long_description=LONG_DESC,
long_description_content_type="text/markdown",
url="https://github.com/WSDOT-GIS/wsdot-traffic-gp",
author="Washington State Department of Transportation",
author_email="[email protected]",
license="Unlicense",
classifiers=[
'Development Status :: 5 - Production/Stable',
"Intended Audience :: Developers",
"Intended Audience :: Information Technology",
"License :: Public Domain",
"Natural Language :: English",
"Operating System :: OS Independent",
"Programming Language :: Python",
"Programming Language :: Python :: 2",
"Programming Language :: Python :: 2.7",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.5",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
"Topic :: Scientific/Engineering :: GIS"
],
packages=find_packages(),
entry_points={
'console_scripts': [
'wsdottrafficgp = wsdottraffic.gp.__main__:main',
'wsdottraffic = wsdottraffic.__main__:main',
'multipointtopoint = wsdottraffic.gp.multipointtopoint:main',
'zipgdb = wsdottraffic.gp.zipgdb:main'
]
},
package_data={
'wsdottraffic.gp': ["*.json"]
}
)