-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathsetup.py
38 lines (35 loc) · 1.28 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
import setuptools
with open("README.md", "r") as f:
LONG_DESCRIPTION = f.read()
with open("requirements.txt") as f:
INSTALL_REQUIRES = f.read().strip().split("\n")
setuptools.setup(
name="carst",
version="2.0.0a1",
author="The CARST Developers",
author_email="[email protected]",
maintainer="Whyjay Zheng",
maintainer_email="[email protected]",
description="Cryoshpere And Remote Sensing Toolkit",
long_description=LONG_DESCRIPTION,
long_description_content_type="text/markdown",
url="https://github.com/whyjz/CARST.git",
license="MIT",
packages=setuptools.find_packages(exclude=["*extra"]),
install_requires=INSTALL_REQUIRES,
python_requires=">=3",
scripts=["bin/dhdt.py", "bin/featuretrack.py"],
classifiers=[
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Development Status :: 3 - Alpha",
"Intended Audience :: Education",
"Intended Audience :: Science/Research",
"Topic :: Education",
"Topic :: Scientific/Engineering",
"Topic :: Scientific/Engineering :: GIS",
"Topic :: Scientific/Engineering :: Image Processing",
"Topic :: Scientific/Engineering :: Physics"
],
)