forked from Loop3D/map2loop
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
52 lines (47 loc) · 1.38 KB
/
setup.py
File metadata and controls
52 lines (47 loc) · 1.38 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
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
import os
import sys
import setuptools
from map2loop.version import __version__
head, tail = os.path.split(sys.argv[0])
def get_description():
long_description = ""
readme_file = os.path.join(head, "README.md")
with open(readme_file, "r") as fh:
long_description = fh.read()
return long_description
setuptools.setup(
name="map2loop",
version=__version__,
author="The Loop Organisation",
author_email="roy.thomson@monash.edu",
description="Generate 3D model data from 2D maps.",
long_description=get_description(),
long_description_content_type="text/markdown",
install_requires=[
"numpy",
# "gdal",
"pandas",
"geopandas",
"shapely",
"tqdm",
"networkx",
"owslib",
"hjson",
"loopprojectfile",
"map2model"
],
url="https://github.com/Loop3D/map2loop-3",
packages=setuptools.find_packages(),
classifiers=[
"Development Status :: 4 - Beta",
"Intended Audience :: Science/Research",
"Natural Language :: English",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Topic :: Scientific/Engineering",
"Topic :: Scientific/Engineering :: GIS",
],
python_requires=">=3.8",
)