-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathsetup.py
More file actions
63 lines (59 loc) · 1.93 KB
/
setup.py
File metadata and controls
63 lines (59 loc) · 1.93 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
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
from setuptools import find_packages, setup
VERSION = "0.1.0"
DESCRIPTION = "CRUD operations on nested SQLAlchemy ORM-models using Pydantic"
SOURCE_URL = "https://github.com/Wouterkoorn/sqlalchemy-pydantic-orm"
DOCS_URL = "https://wouterkoorn.github.io/sqlalchemy-pydantic-orm/index.html"
TRACKER_URL = "https://github.com/Wouterkoorn/sqlalchemy-pydantic-orm/issues"
with open("README.md", "r") as file:
LONG_DESCRIPTION = file.read()
setup(
name="sqlalchemy-pydantic-orm",
version=VERSION,
url=SOURCE_URL,
project_urls={
"Source": SOURCE_URL,
"Documentation": DOCS_URL,
"Tracker": TRACKER_URL,
},
author="wkoorn (Wouter Koorn)",
author_email="<wouter.koorn@student.hu.nl>",
description=DESCRIPTION,
long_description_content_type="text/markdown",
long_description=LONG_DESCRIPTION,
packages=find_packages(),
python_requires=">=3.8",
install_requires=["pydantic >= 1.8.1", "sqlalchemy >= 1.4.11"],
extras_require={
"dev": [
"pytest >= 6.2.3",
"coverage >= 5.5",
"flake8 >= 3.9.1",
"black >= 20.8",
"mypy >= 0.812",
"pdoc3 >= 0.9.2",
]
},
keywords=[
"python",
"pydantic",
"sqlalchemy",
"ORM",
"nested",
"nesting",
"CRUD",
],
classifiers=[
"Development Status :: 3 - Alpha",
"Intended Audience :: Developers",
"Programming Language :: Python :: 3",
"Operating System :: OS Independent",
"License :: OSI Approved :: MIT License",
"Natural Language :: English",
"Topic :: Software Development :: Libraries :: Python Modules",
"Topic :: Database",
"Topic :: Database :: Database Engines/Servers",
"Topic :: Software Development :: Version Control :: Git",
"Topic :: Software Development :: Testing :: Unit",
"Typing :: Typed",
],
)