-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathsetup.py
More file actions
27 lines (24 loc) · 845 Bytes
/
setup.py
File metadata and controls
27 lines (24 loc) · 845 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
#!/usr/bin/env python
import os
from setuptools import setup
cwd = os.path.dirname(os.path.abspath(__name__))
long_description = open(os.path.join(cwd, "README.rst"), "r").read()
setup(
name="inflow",
version="0.3.2",
author="Jaap Broekhuizen",
author_email="broekhuizen@baopt.nl",
description="A simple InfluxDB client library.",
url="https://github.com/AdvancedClimateSystems/inflow/",
long_description=long_description,
license="MPL",
packages=["inflow"],
install_requires=["requests~=2.11", "six~=1.11", "pytz"],
classifiers=[
"Intended Audience :: Developers",
"License :: OSI Approved :: Mozilla Public License 2.0 (MPL 2.0)",
"Operating System :: OS Independent",
"Programming Language :: Python :: 2",
"Programming Language :: Python :: 3",
],
)