forked from kaufland-ecommerce/esque
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
60 lines (52 loc) · 1.68 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
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
#!/usr/bin/env python
# -*- coding: utf-8 -*-
import codecs
import os
import sys
from setuptools import find_packages, setup
here = os.path.abspath(os.path.dirname(__file__))
with codecs.open(os.path.join(here, "README.md"), encoding="utf-8") as f:
long_description = "\n" + f.read()
about = {}
with open(os.path.join(here, "esque", "__version__.py")) as f:
exec(f.read(), about)
if sys.argv[-1] == "publish":
os.system("python setup.py sdist bdist_wheel upload")
sys.exit()
required = [
"pip>=9.0.1",
"setuptools>=36.2.1",
"virtualenv",
"confluent-kafka",
"click>=7.0",
"pykafka",
"pendulum",
]
setup(
name="esque",
version=about["__version__"],
description="A usable kafka tool.",
keywords="kafka commandline apache",
long_description=long_description,
long_description_content_type="text/markdown",
author="real.digital",
url="https://github.com/real-digital/esque",
author_email="[email protected]",
packages=find_packages(exclude=["tests", "tests.*"]),
entry_points={"console_scripts": ["esque=esque.cli.commands:esque"]},
package_data={"config": ["sample_config.cfg"]},
python_requires=">=3.6",
setup_requires=[],
install_requires=required,
extras_require={"test": ["pytest", "pytest-mock"], "dev": ["black", "flake8"]},
include_package_data=True,
license="MIT",
classifiers=[
"Development Status :: 3 - Alpha",
"Intended Audience :: Developers",
"Topic :: Software Development :: Build Tools",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
],
)