forked from rkhleics/police-api-client-python
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
executable file
·26 lines (23 loc) · 685 Bytes
/
Copy pathsetup.py
File metadata and controls
executable file
·26 lines (23 loc) · 685 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
#!/usr/bin/env python
from setuptools import setup, find_packages
with open('police_api/version.py') as f:
exec(f.read())
setup(
name='police-api-client',
version=__version__, # NOQA
description='Python client library for the Police API',
long_description=open('README.rst').read(),
author='Rock Kitchen Harris',
license='MIT',
url='https://github.com/rkhleics/police-api-client-python',
download_url='https://github.com/rkhleics/police-api-client-python/downloads',
packages=find_packages(),
include_package_data=True,
setup_requires=[
'nose',
],
install_requires=[
'requests',
'responses',
],
)