forked from vkurup/python-tcxparser
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
34 lines (32 loc) · 1.06 KB
/
Copy pathsetup.py
File metadata and controls
34 lines (32 loc) · 1.06 KB
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
from setuptools import setup, find_packages
__version__ = '1.1.0'
setup(
name='python-tcxparser',
version=__version__,
description='Simple parser for Garmin TCX files',
long_description=open('README.rst').read(),
author='Vinod Kurup',
author_email='vinod@kurup.com',
url='https://github.com/vkurup/python-tcxparser/',
packages=find_packages(include=['tcxparser']),
include_package_data=True,
license='BSD',
zip_safe=False,
keywords='tcx',
classifiers=[
'Development Status :: 5 - Production/Stable',
'Intended Audience :: Developers',
'License :: OSI Approved :: BSD License',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Programming Language :: Python :: 2',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.6',
'Topic :: Software Development :: Libraries :: Python Modules',
],
install_requires=[
"lxml",
],
test_suite="tests",
)