-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
43 lines (38 loc) · 1.23 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
"""
Setup script for the kvadratnet module.
"""
from setuptools import setup
import kvadratnet
def readme():
"""
Return a properly formatted readme text, if possible, that can be used
as the long description for setuptools.setup.
"""
with open("readme.md") as readme_file:
descr = readme_file.read()
return descr
setup(
name="kvadratnet",
version=kvadratnet.__version__,
description="Python tools for working with the Danish Kvadratnet tiling scheme.",
long_description=readme(),
long_description_content_type="text/markdown",
classifiers=[
"Development Status :: 3 - Alpha",
"Intended Audience :: Developers",
"Intended Audience :: Science/Research",
"License :: OSI Approved :: ISC License (ISCL)",
"Topic :: Scientific/Engineering :: GIS",
"Topic :: Utilities",
],
entry_points={"console_scripts": ["knet=kvadratnet.knet:cli"]},
keywords="kvadratnet gis tiling",
url="https://github.com/kbevers/kvadratnet",
author="Kristian Evers",
author_email="[email protected]",
license="ISC",
packages=["kvadratnet", "tests"],
install_requires=["click"],
test_suite="tests/",
tests_require=["pytest"],
)