-
Notifications
You must be signed in to change notification settings - Fork 45
/
setup.py
36 lines (34 loc) · 1.14 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
from setuptools import find_packages, setup
__version__ = "2.3.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="[email protected]",
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 :: 3",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Topic :: Software Development :: Libraries :: Python Modules",
],
install_requires=[
"lxml",
"python-dateutil",
],
test_suite="tests",
)