forked from GoldenCheetah/sweatpy
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
37 lines (36 loc) · 987 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
26
27
28
29
30
31
32
33
34
35
36
37
from setuptools import setup, find_packages
setup(
name = 'sweat',
packages = find_packages(),
version = '0.4.0',
description = 'Workout analysis',
author='Aart Goossens',
author_email='[email protected]',
url='https://github.com/GoldenCheetah/sweatpy',
install_requires=[
'fitparse',
'goldencheetahlib',
'lmfit',
'scipy',
'pandas',
'requests',
],
tests_require=[
'pytest',
'vcrpy',
],
setup_requires=[
"pytest-runner",
],
classifiers=[
'Programming Language :: Python',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
'License :: OSI Approved :: MIT License',
'Operating System :: OS Independent',
'Development Status :: 3 - Alpha',
'Intended Audience :: Developers',
'Intended Audience :: Science/Research',
'Topic :: Scientific/Engineering',
]
)