-
Notifications
You must be signed in to change notification settings - Fork 26
/
Copy pathsetup.py
38 lines (32 loc) · 1.24 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
'''
PyTrx (c) is licensed under a MIT License.
You should have received a copy of the license along with this
work. If not, see <https://choosealicense.com/licenses/mit/>.
PYTRX SETUP FILE
This file is needed for the PyTrx package installation.
'''
import setuptools
with open("README.md", "r") as fh:
long_description = fh.read()
setuptools.setup(
name="pytrx",
version="1.2.4",
author="Penelope How",
author_email="[email protected]",
description="An object-oriented toolset for calculating velocities, surface areas and distances from oblique imagery of glacial environments",
long_description=long_description,
long_description_content_type="text/markdown",
url="https://github.com/PennyHow/PyTrx",
keywords="glaciology photogrammetry time-lapse",
packages=setuptools.find_packages(),
classifiers=[
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Development Status :: 5 - Production/Stable",
"Intended Audience :: Science/Research",
"Natural Language :: English",
"Operating System :: OS Independent",
],
install_requires=['glob2', 'matplotlib', 'numpy', 'opencv-python>=3', 'pillow', 'scipy'],
python_requires='>=3.6',
)