forked from frederickjansen/polyline
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
60 lines (53 loc) · 1.85 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
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
# -*- coding: utf-8 -*-
import os
from codecs import open
# Parse the version from the module without importing
with open('polyline/__init__.py') as f:
for line in f:
if line.find("__version__") >= 0:
version = line.split("=")[1].strip().strip('"').strip("'")
break
try:
from setuptools import setup
except ImportError:
from distutils.core import setup
desc = "A Python implementation of Google's Encoded Polyline Algorithm Format."
with open('README.rst', 'r') as f:
long_desc = f.read()
with open(os.path.join('requirements', 'base.txt'), 'r') as f:
base_reqs = f.readlines()
with open(os.path.join('requirements', 'test.txt'), 'r') as f:
test_reqs = f.readlines()
setup(
name='polyline',
version=version,
description=desc,
long_description=long_desc,
author='Bruno M. Custódio',
author_email='[email protected]',
maintainer='Frederick Jansen',
maintainer_email='[email protected]',
url='https://github.com/hicsail/polyline',
packages=['polyline'],
install_requires=base_reqs,
tests_require=test_reqs,
test_suite='nose.collector',
license='MIT',
zip_safe=False,
classifiers=(
'Development Status :: 5 - Production/Stable',
'Intended Audience :: Developers',
'License :: OSI Approved :: MIT License',
'Programming Language :: Python',
'Programming Language :: Python :: 2',
'Programming Language :: Python :: 2.6',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.2',
'Programming Language :: Python :: 3.3',
'Programming Language :: Python :: 3.4',
'Programming Language :: Python :: 3.5',
'Topic :: Software Development :: Libraries',
'Topic :: Utilities',
),
)