forked from piccolo-orm/piccolo
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
98 lines (83 loc) · 2.94 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
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
#!/usr/bin/env python
# -*- coding: utf-8 -*-
import itertools
import os
import typing as t
from setuptools import find_packages, setup
from piccolo import __VERSION__ as VERSION
directory = os.path.abspath(os.path.dirname(__file__))
extras = ["orjson", "playground", "postgres", "sqlite", "uvloop"]
with open(os.path.join(directory, "README.md")) as f:
LONG_DESCRIPTION = f.read()
def parse_requirement(req_path: str) -> t.List[str]:
"""
Parse requirement file.
Example:
parse_requirement('requirements.txt') # requirements/requirements.txt
parse_requirement('extras/playground.txt') # requirements/extras/playground.txt
Returns:
List[str]: list of requirements specified in the file.
""" # noqa: E501
with open(os.path.join(directory, "requirements", req_path)) as f:
contents = f.read()
return [i.strip() for i in contents.strip().split("\n")]
def extras_require() -> t.Dict[str, t.List[str]]:
"""
Parse requirements in requirements/extras directory
"""
extra_requirements = {
extra: parse_requirement(os.path.join("extras", f"{extra}.txt"))
for extra in extras
}
extra_requirements["all"] = list(
itertools.chain.from_iterable(extra_requirements.values())
)
return extra_requirements
setup(
name="piccolo",
version=VERSION,
description=(
"A fast, user friendly ORM and query builder which supports asyncio."
),
long_description=LONG_DESCRIPTION,
long_description_content_type="text/markdown",
author="Daniel Townsend",
author_email="dan@dantownsend.co.uk",
python_requires=">=3.7.0",
url="https://github.com/piccolo-orm/piccolo",
packages=find_packages(exclude=("tests",)),
package_data={
"": [
"templates/*",
"templates/**/*",
"templates/**/**/*",
"templates/**/**/**/*",
],
"piccolo": ["py.typed"],
},
project_urls={
"Documentation": (
"https://piccolo-orm.readthedocs.io/en/latest/index.html"
),
"Source": "https://github.com/piccolo-orm/piccolo",
"Tracker": "https://github.com/piccolo-orm/piccolo/issues",
},
install_requires=parse_requirement("requirements.txt"),
extras_require=extras_require(),
license="MIT",
classifiers=[
"License :: OSI Approved :: MIT License",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: Implementation :: CPython",
"Framework :: AsyncIO",
"Typing :: Typed",
"Topic :: Database",
],
entry_points={"console_scripts": ["piccolo = piccolo.main:main"]},
)