-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
34 lines (28 loc) · 1.04 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
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="vedro-dependency-finder",
version="0.1.1",
description="Plugin helps to find dependencies of unstable tests by shuffling selected tests",
long_description=open("README.md").read(),
long_description_content_type="text/markdown",
author="Daria Cherepakhina",
author_email="[email protected]",
python_requires=">=3.8",
url="https://github.com/TeoDV/vedro-dependency-finder/",
packages=find_packages(exclude=("tests",)),
package_data={"vedro_dependency_finder": ["py.typed"]},
install_requires=find_required(),
tests_require=find_dev_required(),
classifiers=[
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Typing :: Typed",
],
)