-
Notifications
You must be signed in to change notification settings - Fork 8
/
setup.py
31 lines (25 loc) · 1.05 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
#!/usr/bin/env python
from distutils.core import setup
version = "0.3.1"
"""Setup script for pygpx"""
setup (
name = "pygpx",
version = version,
description = "A module for parsing GPX files.",
long_description = "This module allows you to parse and extract data from GPX files.",
author = "Ben Leslie, Nick Lang, Artem Dudarev",
url = "http://www.github.com/dudarev/pygpx",
download_url = "http://github.com/dudarev/pygpx/zipball/master",
license = "http://www.opensource.org/licenses/mit-license.php",
packages = ["pygpx"],
package_dir = {"pygpx": 'pygpx'},
package_data = {'pygpx': ['schema/gpx-1_1.xsd']},
platforms = ["any"],
classifiers = ["Development Status :: 4 - Alpha",
"Intended Audience :: Developers",
"Operating System :: OS Independent",
"Programming Language :: Python",
"License :: OSI Approved :: MIT License"
]
)