forked from spectacles-ci/spectacles
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
35 lines (31 loc) · 1.06 KB
/
setup.py
File metadata and controls
35 lines (31 loc) · 1.06 KB
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
from pathlib import Path
from setuptools import setup, find_packages
__version__ = "0.1.0"
here = Path(__file__).parent.resolve()
# Get the long description from the README file
with (here / "README.md").open(encoding="utf-8") as file:
long_description = file.read()
setup(
name="spectacles",
version=__version__,
py_modules=["spectacles"],
packages=find_packages(exclude=["docs", "tests*", "scripts"]),
include_package_data=True,
install_requires=["requests", "PyYAML", "colorama", "backoff", "aiohttp"],
tests_require=[
"pytest",
"pytest-cov",
"requests_mock",
"mypy",
"coverage",
"pytest-asyncio",
"asynctest",
],
entry_points={"console_scripts": ["spectacles = spectacles.cli:main"]},
author="Dylan Baker, Josh Temple",
author_email="",
url="https://github.com/spectacles-ci/spectacles",
download_url="https://github.com/spectacles-ci/spectacles/tarball/" + __version__,
long_description=long_description,
long_description_content_type="text/markdown",
)