forked from Loop3D/LoopProjectFile
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
34 lines (31 loc) · 1.18 KB
/
setup.py
File metadata and controls
34 lines (31 loc) · 1.18 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
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, "LoopProjectFile/Version.py")) as fp:
exec(fp.read(), version)
version = version["__version__"]
setup(
name="LoopProjectFile",
install_requires=["netCDF4>=1.5.4", "numpy", "pandas"],
description="Open source structural geology data storage for Loop Projects",
author="Roy Thomson",
author_email="roy.thomson@monash.edu",
url="https://github.com/Loop3D/LoopProjectFile",
classifiers=[
"Development Status :: 3 - Alpha",
"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",
"Topic :: Scientific/Engineering :: GIS",
],
version=version,
packages=find_packages()
)