-
Notifications
You must be signed in to change notification settings - Fork 24
/
setup.py
53 lines (51 loc) · 1.52 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
from setuptools import find_packages, setup
with open("./README.md") as fp:
description = fp.read()
setup(
name="kq",
description="Kafka Job Queue for Python",
long_description=description,
long_description_content_type="text/markdown",
author="Joohwan Oh",
author_email="[email protected]",
url="https://github.com/joowani/kq",
keywords=["kafka", "python", "queue", "async"],
packages=find_packages(exclude=["tests"]),
include_package_data=True,
python_requires=">=3.6",
license="MIT",
use_scm_version=True,
setup_requires=["setuptools_scm"],
install_requires=[
"dataclasses>=0.6; python_version < '3.7'",
"dill>=0.3.2",
"kafka-python>=2.0.0",
"setuptools>=42",
"setuptools_scm[toml]>=3.4",
],
extras_require={
"dev": [
"black",
"flake8>=3.8.4",
"isort>=5.0.0",
"mypy>=0.790",
"pre-commit>=2.9.3",
"pytest>=6.0.0",
"pytest-cov>=2.0.0",
"sphinx",
"sphinx_rtd_theme",
"types-setuptools",
"types-dataclasses",
],
},
classifiers=[
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Natural Language :: English",
"Operating System :: MacOS",
"Operating System :: Microsoft :: Windows",
"Operating System :: Unix",
"Programming Language :: Python :: 3",
"Topic :: Documentation :: Sphinx",
],
)