-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsetup.py
30 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="re-generate",
version="0.1.8",
description="Package for random data generation via ReGex",
long_description=long_description,
url="https://github.com/Warrfie/re-generate",
author="Kuklikov Maxim (Warrfie)",
author_email="[email protected]",
classifiers=[
"Development Status :: 3 - Alpha",
"Intended Audience :: Information Technology",
"Topic :: Software Development :: Quality Assurance",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3",
],
keywords="QA, random string, reverse regular expression, regex generator, testing, autotesting",
packages=find_packages(),
python_requires=">=3.7, <4",
project_urls={
"Telegram": "https://t.me/sasisochka",
"Main page": "https://github.com/Warrfie/re-generate"
},
)