-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
36 lines (29 loc) · 1.05 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
from __future__ import annotations
from setuptools import find_packages, setup
def find_required():
with open('requirements.txt') as f:
return f.read().splitlines()
def find_dev_required():
with open("requirements-dev.txt") as f:
return f.read().splitlines()
setup(
name="flake8-vedro-allure",
version="1.0.0",
description="flake8 based linter for vedro framework with integrated allure",
long_description=open("README.md").read(),
long_description_content_type="text/markdown",
python_requires=">=3.10",
url="https://github.com/mytestopia/flake8-vedro-allure",
author="Anna",
author_email="testopia13@gmail.com",
license="Apache-2.0",
packages=find_packages(exclude=("tests",)),
package_data={"flake8_vedro_allure": ["py.typed"]},
install_requires=find_required(),
tests_require=find_dev_required(),
classifiers=[
"License :: OSI Approved :: Apache Software License",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
],
)