-
Notifications
You must be signed in to change notification settings - Fork 9
/
setup.py
29 lines (27 loc) · 836 Bytes
/
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
try:
from setuptools import setup, find_packages
except ImportError:
from distutils.core import setup, find_packages
DESCRIPTION = "Provide a common API to major routing providers"
LONG_DESCRIPTION = DESCRIPTION
NAME = "directions.py"
AUTHOR = "Jacob Wasserman"
AUTHOR_EMAIL = "[email protected]"
MAINTAINER = "Jacob Wasserman"
MAINTAINER_EMAIL = "[email protected]"
DOWNLOAD_URL = 'http://github.com/jwass/directions.py'
LICENSE = 'BSD 3-clause'
VERSION = '0.0.1'
setup(name=NAME,
version=VERSION,
description=DESCRIPTION,
long_description=LONG_DESCRIPTION,
author=AUTHOR,
author_email=AUTHOR_EMAIL,
maintainer=MAINTAINER,
maintainer_email=MAINTAINER_EMAIL,
url=DOWNLOAD_URL,
download_url=DOWNLOAD_URL,
license=LICENSE,
packages=find_packages(),
)