-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
43 lines (40 loc) · 1.18 KB
/
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
39
40
41
42
43
#!/usr/bin/env python
import setuptools
VERSION = "0.7.1"
with open("README.md", "r") as fh:
fh.readline() # do not include ribbons
long_description = fh.read()
setuptools.setup(
author="Jonas Hagen",
author_email="[email protected]",
classifiers=["Operating System :: OS Independent"],
description="Keeps a local data repository up to date with different remote data sources.",
long_description=long_description,
long_description_content_type="text/markdown",
license="MIT",
maintainer="Jonas Hagen",
maintainer_email="[email protected]",
name="databird",
packages=["databird", "databird_drivers.standard"],
python_requires=">=3.5.*, <4",
version=VERSION,
url="https://github.com/jonas-hagen/databird",
download_url="https://github.com/jonas-hagen/databird/archive/databird-{v}.tar.gz".format(
v=VERSION
),
install_requires=[
"ruamel.yaml",
"dict-recursive-update",
"frozendict",
"mr.bob",
"click",
"rq",
"redis",
"flask",
"rq-dashboard",
],
entry_points="""
[console_scripts]
databird=databird.cli:cli
""",
)