-
Notifications
You must be signed in to change notification settings - Fork 9
/
setup.py
46 lines (40 loc) · 1.11 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
37
38
39
40
41
42
43
44
45
46
from pathlib import Path
from setuptools import find_namespace_packages, setup
readme = Path(__file__).parent / "README.md"
long_description = readme.read_text()
install_requires = ["pydantic~=2.7"]
dev_requires = [
"black>=22.1.0",
"httpx>=0.14.2",
"isort>=5.4.2",
"pip-tools>=2.0.2",
"pytest>=6.0.1",
"pytest-cov>=2.10.1",
"pytest-repeat==0.9.3",
"ruff",
]
docs_requires = [
"AutoMacDoc==0.3",
"livereload==2.6.3",
"mkdocs-material==4.6.3",
"mkdocs==1.3.0",
"mkdocstrings==0.10.0",
]
setup(
name="pycfmodel",
version="1.0.0",
description="A python model for CloudFormation scripts",
author="Skyscanner Product Security",
author_email="[email protected]",
long_description=long_description,
long_description_content_type="text/markdown",
url="https://github.com/Skyscanner/pycfmodel",
packages=find_namespace_packages(exclude=("tests", "docs")),
python_requires=">=3.8",
install_requires=install_requires,
tests_require=dev_requires,
extras_require={
"dev": dev_requires,
"docs": docs_requires,
},
)