-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
33 lines (29 loc) · 888 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
from os import path
from setuptools import find_packages, setup
here = path.abspath(path.dirname(__file__))
with open("README.md", "r", encoding="utf-8") as f:
readme = f.read()
setup(
name="mp-socket-logging",
version="0.1.1",
description="A small toolkit for python multiprocessing file logging",
long_description=readme,
long_description_content_type="text/markdown",
author="Zhong Qishuai",
author_email="[email protected]",
url="https://github.com/FerdinandZhong/mp-socket-logging",
packages=find_packages(exclude=["tests*", "example*"]),
classifiers=[
"Programming Language :: Python :: 3",
],
python_requires=">3",
extras_require={
"dev": [
"pytest>=6",
"flake8>=3.8",
"black>=20.8b1",
"isort>=5.6",
"autoflake>=1.4",
],
},
)