-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathsetup.py
More file actions
31 lines (28 loc) · 833 Bytes
/
setup.py
File metadata and controls
31 lines (28 loc) · 833 Bytes
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
from setuptools import setup, find_packages
import os
version = '0.3a1'
def read(fname):
# read the contents of a text file
return open(os.path.join(os.path.dirname(__file__), fname)).read()
setup(
name = "spiderwaregps",
version = version,
url = 'http://github.com/spiderware/pyhton-spiderwaregps',
license = 'BSD',
platforms = ['OS Independent'],
description = "A converter for the custom binary format of the spiderware gps tracker.",
long_description = read('README.rst'),
author = 'Stefan Foulis',
author_email = 'stefan.foulis@gmail.com',
package_dir = {'': 'src'},
packages = ['sgps','sgps.export'],
install_requires = [
'setuptools',
'lxml',
'gpxpy',
],
include_package_data = False,
zip_safe = False,
classifiers = [
]
)