-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
45 lines (42 loc) · 1.47 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
import codecs
from setuptools import setup, find_packages
import os
package_root = os.path.abspath(os.path.dirname(__file__))
version = {}
with open(os.path.join(package_root, "LoopDataConverter/version.py")) as fp:
exec(fp.read(), version)
version = version["__version__"]
setup(
name="LoopDataConverter",
install_requires=["dill", "beartype", "numpy", "pandas", "geopandas", "shapely", "validators"],
python_requires=">=3.9",
description="Loop GIS data conversion library for LoopStructural and Map2Loop",
long_description=codecs.open("README.md", "r", "utf-8").read(),
author="Rabii Chaarani",
author_email="[email protected]",
license=("MIT"),
url="https://github.com/Loop3D/LoopDataConverter",
classifiers=[
"Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"Intended Audience :: Other Audience",
"Intended Audience :: Science/Research",
"License :: OSI Approved :: MIT License",
"License :: Free for non-commercial use",
"Natural Language :: English",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Topic :: Multimedia :: Graphics :: 3D Modeling",
"Topic :: Scientific/Engineering",
],
version=version,
packages=find_packages(),
keywords=[
"earth sciences",
"geology",
"3-D modelling",
"structural geology",
"GIS",
"geological mapping",
],
)