-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
36 lines (32 loc) · 1 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
#!/usr/bin/env python3.6
# -*- coding: utf-8 -*-
"""Setup module for Garmin Converter."""
from pathlib import Path
from setuptools import setup, find_packages
import garmin_converter
HERE = Path(__file__).parent
README = (HERE / "README.md").read_text()
APP_VERSION = appinfos.__version__
setup(
name='garmin_converter',
description='Convert FIT Garmin format to GPX using fit2gpx library.',
version=APP_VERSION,
author="Valou",
packages=find_packages(),
author_email="[email protected]",
long_description=README,
python_requires=">=3.7",
classifiers=[
'Environment :: Console',
'Intended Audience :: Information Technology',
'License :: DWTFYW', 'Natural Language :: English',
'Operating System :: POSIX :: Linux',
'Programming Language :: Python :: 3.7'
],
entry_points={
'console_scripts': ['garmin_converter = garmin_converter.garmin_converter:main']},
zip_safe=False,
install_requires=[
'fit2gpx',
]
)