-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
executable file
·38 lines (35 loc) · 885 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
30
31
32
33
34
35
36
37
38
# coding: utf-8
from setuptools import setup, find_packages # noqa: H301
NAME = "influx_rsync"
VERSION = "1.0.0"
# To install the library, run the following
#
# python setup.py install
#
# prerequisite: setuptools
# http://pypi.python.org/pypi/setuptools
REQUIRES = [
"influxdb"
]
setup(
name=NAME,
version=VERSION,
description="influx_rsync incrementally copies data from one db to another",
author_email="[email protected]",
url="",
keywords=["influxdb", "influx_rsync"],
classifiers=(
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
),
include_package_data=True,
install_requires=REQUIRES,
setup_requires=[
'pytest-runner', 'wheel', 'twine'
],
packages=find_packages(),
long_description="""\
influx_rsync
"""
)