-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
33 lines (28 loc) · 1.07 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
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="combidata",
version="0.2.9",
description="Package for random data generation and combination different cases",
long_description=open('README.md').read(),
url="https://warrfie.github.io/combidata",
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, random data, data generation, 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/combidata"
},
long_description_content_type='text/markdown'
)