-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathsetup.py
More file actions
27 lines (23 loc) · 757 Bytes
/
setup.py
File metadata and controls
27 lines (23 loc) · 757 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
from setuptools import setup
def readme():
with open('README.rst') as readme_file:
return readme_file.read()
setup(
name='geckoboard.py',
version='1.1.0',
description='Official Python client for the Geckoboard Datasets API',
long_description=readme(),
url='https://github.com/geckoboard/geckoboard-python',
author='Geckoboard',
author_email='dan@geckoboard.com',
license='MIT',
keywords=['geckoboard', 'datasets', 'api', 'python'],
packages=['geckoboard'],
install_requires=['requests'],
tests_require=['nose', 'mock'],
classifiers=[
'Development Status :: 5 - Production/Stable',
'Intended Audience :: Developers',
'License :: OSI Approved :: MIT License'
]
)