-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsetup.py
executable file
·49 lines (45 loc) · 1.35 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
#!/usr/bin/python
from setuptools import setup, find_packages
import os
EXTRAS_REQUIRES = dict(
test=[
'fudge>=1.0.3',
'nose>=1.1.2',
],
)
for k,v in EXTRAS_REQUIRES.iteritems():
if k == 'test':
continue
EXTRAS_REQUIRES['test'] += v
# Pypi package documentation
root = os.path.dirname(__file__)
path = os.path.join(root, 'README.rst')
with open(path) as fp:
long_description = fp.read()
setup(
name='pygeocode',
version='0.0.5',
description="pygeocode -- Wrapper for several public geocoding APIs",
long_description=long_description,
author='Andres Buritica, Mike Megally, Tommi Virtanen',
maintainer="Andres Buritica",
maintainer_email="[email protected]",
url='https://github.com/thelinuxkid/pygeocode',
license='MIT',
packages = find_packages(),
namespace_packages = ['pygeocode'],
test_suite='nose.collector',
install_requires=[
'setuptools',
],
extras_require=EXTRAS_REQUIRES,
classifiers=[
'Development Status :: 4 - Beta',
'Intended Audience :: Developers',
'Natural Language :: English',
'License :: OSI Approved :: MIT License',
'Programming Language :: Python',
'Programming Language :: Python :: 2.7'
],
)