forked from vkurup/python-tcxparser
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
27 lines (25 loc) · 800 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
from setuptools import setup
__version__ = '0.7.2'
setup(
name='python-tcxparser',
version=__version__,
author='Vinod Kurup',
author_email='[email protected]',
py_modules=['tcxparser', 'test_tcxparser'],
url='https://github.com/vkurup/python-tcxparser/',
license='BSD',
description='Simple parser for Garmin TCX files',
classifiers=[
'Development Status :: 4 - Beta',
'Intended Audience :: Developers',
'License :: OSI Approved :: BSD License',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Topic :: Software Development :: Libraries :: Python Modules',
],
long_description=open('README.md').read(),
install_requires=[
"lxml",
],
test_suite="test_tcxparser",
)