-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsetup.py
65 lines (57 loc) · 1.76 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
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
from setuptools import setup, find_packages
setup(
name="Policosm",
version="0.1",
packages=find_packages(),
# Project uses reStructuredText, so ensure that the docutils get
# installed or upgraded on the target machine
requires=[
"shapely",
"geojson",
"numpy",
"networkx",
"rtree",
"matplotlib",
"descartes",
"colorlover",
"plotly",
"imposm",
"sklearn",
"rdp", 'utm', 'osmium', 'pint', 'pandas', 'geopandas', 'geoparquet', 'scipy'
],
install_requires=[
"shapely",
"geojson",
"numpy",
"networkx",
"rtree",
"matplotlib",
"descartes",
"colorlover",
"plotly",
"imposm",
"sklearn",
"rdp"
],
package_data={
# If any package contains *.txt or *.rst files, include them:
'': ['*.txt', '*.rst'],
# And include any *.msg files found in the 'hello' package, too:
'hello': ['*.msg'],
},
# metadata for upload to PyPI
author="Fabien Pfaender",
author_email="[email protected]",
description="a library to extract, explore, analyze and draw osm based extracts. Convert osm maps into graphs, networks, and polygons",
license="MIT License",
keywords="openstreetmap osm graph extractor analysis spatial",
url="https://github.com/ComplexCity/policosm", # project home page, if any
classifiers=(
"Development Status :: 1 - Pre-Alpha"
"Intended Audience :: Developers"
"Natural Language :: English"
"Programming Language :: Python"
"Programming Language :: Python :: 2.7"
"Topic :: Software Development :: Libraries :: Python Modules"
),
)