-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
executable file
·35 lines (33 loc) · 1.19 KB
/
setup.py
File metadata and controls
executable file
·35 lines (33 loc) · 1.19 KB
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
# -*- coding: UTF-8 -*-
import setuptools
with open("README.md", "r") as readme:
long_desc = readme.read()
setuptools.setup(
name="ors",
version="0.1.0",
author="Nick Newstead",
author_email="nick.newstead@canada.ca",
description="A Python package to query the ORS API and store the returned road network distances",
long_description=long_desc,
long_description_content_type="text/markdown",
url="https://github.com/nick-newstead/ors",
license="MIT",
packages=setuptools.find_packages(),
classifiers=[
"Development Status :: 1 - Planning",
"License :: OSI Approved :: MIT License",
"Topic :: Scientific/Engineering :: GIS",
"Programming Language :: Python :: 3.5",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7"
],
project_urls={
"Documentation": "https://github.com/nick-newstead/ors/wiki",
"Source code": "https://github.com/nick-newstead/ors/tree/master/ors",
"Bug tracker": "https://github.com/nick-newstead/ors/issues",
"License": "https://github.com/nick-newstead/ors/tree/master/LICENSE.md"
},
install_requires=["numpy", "pandas", "openrouteservice"],
python_requires=">=3.5",
include_package_data=True
)