-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
25 lines (23 loc) · 809 Bytes
/
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
from pathlib import Path
from setuptools import setup, find_packages
parent_dir = Path(__file__).resolve().parent
setup(
name="fake-geo-images",
version="0.1.5",
description="Fake geospatial images for unit tests",
long_description=parent_dir.joinpath("README.md").read_text(encoding="utf-8"),
long_description_content_type="text/markdown",
packages=find_packages(),
license="MIT",
classifiers=[
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Development Status :: 4 - Beta",
"Intended Audience :: Developers",
],
install_requires=parent_dir.joinpath("requirements.txt")
.read_text(encoding="utf-8")
.splitlines(),
python_requires=">=3.6",
)