-
Notifications
You must be signed in to change notification settings - Fork 2
/
setup.py
43 lines (38 loc) · 1.01 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
# !/usr/bin/env python3
# -*- coding: utf-8 -*-
from setuptools import setup, find_packages
DESCRIPTION = \
'pygce\n\n\
A tool to export, save, and analyze your Garmin Connect data.\n\
\n\
Install\n\n\
- $ python3 setup.py (install from source)\n\
\n\
Questions and issues\n\n\
The github issue tracker is only for bug reports and feature requests.'
VERSION = open('VERSION').readlines()[0]
VERSION_NUMBER = VERSION.split(' ')[0]
setup(
name='pygce',
version=VERSION_NUMBER,
author='sirfoga',
author_email='[email protected]',
description='pygce is an unofficial Garmin Connect data exporter.',
long_description=DESCRIPTION,
keywords='garmin data parser',
url='https://github.com/sirfoga/pygce',
packages=find_packages(),
entry_points={
'console_scripts': [
'pygce = pygce.cli:main'
]
},
install_requires=[
'bs4',
'pyhal',
'lxml',
'numpy',
'sklearn',
'selenium'
]
)