-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
31 lines (27 loc) · 1.02 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
from setuptools import setup, find_packages
import pathlib
here = pathlib.Path(__file__).parent.resolve()
long_description = (here / "README.md").read_text(encoding="utf-8")
setup(
name="compositional_logger",
version="0.1.0",
description="Package for data logging in compositional style",
long_description=long_description,
url="https://github.com/Warrfie/compositional_logger",
author="Kuklikov Maxim (Warrfie)",
author_email="[email protected]",
classifiers=[
"Development Status :: 4 - Beta",
"Intended Audience :: Information Technology",
"Topic :: Software Development :: Quality Assurance",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3",
],
keywords="QA, logging, combidata, testing API, testing, autotesting",
packages=find_packages(),
python_requires=">=3.10, <4",
project_urls={
"Telegram": "https://t.me/sasisochka",
"Main page": "https://github.com/Warrfie/compositional_logger"
},
)