forked from mapbox/robosat
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
55 lines (48 loc) · 1.87 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
46
47
48
49
50
51
52
53
54
55
"""
RoboSat.pink
----------
Semantic Segmentation ecosystem for GeoSpatial Imagery
<http://www.RoboSat.pink>
"""
from setuptools import setup, find_packages
from os import path
import re
here = path.dirname(__file__)
with open(path.join(here, "robosat_pink", "__init__.py"), encoding="utf-8") as f:
version = re.sub("( )*__version__( )*=( )*", "", f.read()).replace('"', "")
with open(path.join(here, "README.md"), encoding="utf-8") as f:
long_description = f.read()
with open(path.join(here, "requirements.txt")) as f:
install_requires = f.read().splitlines()
setup(
name="RoboSat.pink",
version=version,
url="https://github.com/datapink/robosat.pink",
download_url="https://github.com/datapink/robosat.pink/releases",
license="MIT",
maintainer="DataPink",
maintainer_email="[email protected]",
description="Semantic Segmentation ecosystem for GeoSpatial Imagery",
long_description=long_description,
long_description_content_type="text/markdown",
packages=find_packages(exclude=["tests"]),
install_requires=install_requires,
entry_points={"console_scripts": ["rsp = robosat_pink.tools.__main__:main"]},
include_package_data=True,
python_requires=">=3.6",
classifiers=[
"Development Status :: 4 - Beta",
"Environment :: Console",
"Intended Audience :: Science/Research",
"Intended Audience :: Developers",
"Intended Audience :: Information Technology",
"License :: OSI Approved :: MIT License",
"Natural Language :: English",
"Operating System :: POSIX :: Linux",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
"Topic :: Scientific/Engineering :: Image Recognition",
"Topic :: Scientific/Engineering :: GIS",
"Topic :: Software Development :: Libraries :: Application Frameworks",
],
)