-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathsetup.py
More file actions
30 lines (27 loc) · 1019 Bytes
/
setup.py
File metadata and controls
30 lines (27 loc) · 1019 Bytes
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
import setuptools
with open('README.md', 'r', encoding='utf-8') as fh:
README = fh.read()
setuptools.setup(
name="hikingmap",
version="0.2.0",
license='GNU General Public License (GNU GPL v3 or above)',
author="Roel Derickx",
author_email="hikingmap.pypi@derickx.be",
description="A script to calculate the minimum amount of pages needed to render one or more GPX tracks",
long_description=README,
long_description_content_type="text/markdown",
url="https://github.com/roelderickx/hikingmap",
packages=setuptools.find_packages(),
python_requires='>=3.7',
entry_points={
'console_scripts': ['hikingmap = hikingmap.hikingmap:main']
},
classifiers=[
'Environment :: Console',
'Topic :: Scientific/Engineering :: GIS',
'Development Status :: 6 - Mature',
'Programming Language :: Python :: 3',
'License :: OSI Approved :: GNU General Public License (GPL)',
'Operating System :: OS Independent',
],
)