-
Notifications
You must be signed in to change notification settings - Fork 39
/
Copy pathsetup.py
94 lines (71 loc) · 2.82 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
#!/usr/bin/env python
# -*- coding: utf-8 -*-
import itertools
import os
import typing as t
from setuptools import find_packages, setup
DIRECTORY = os.path.abspath(os.path.dirname(__file__))
with open(os.path.join(DIRECTORY, "requirements/requirements.txt")) as f:
contents = f.read()
REQUIREMENTS = [i.strip() for i in contents.strip().split("\n")]
with open(os.path.join(DIRECTORY, "README.md")) as f:
LONG_DESCRIPTION = f.read()
EXTRAS = ["faker", "s3"]
def parse_requirement(req_path: str) -> t.List[str]:
"""
Parses a requirement file - returning a list of contents.
Example::
parse_requirement('requirements.txt') # requirements/requirements.txt
parse_requirement('extras/playground.txt') # requirements/extras/playground.txt
:returns: A 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
def get_version():
with open(os.path.join(DIRECTORY, "piccolo_admin", "version.txt")) as f:
return f.read().strip()
setup(
name="piccolo_admin",
version=get_version(),
description="A powerful and modern admin interface / CMS, powered by Piccolo and ASGI.", # noqa: E501
long_description=LONG_DESCRIPTION,
long_description_content_type="text/markdown",
author="Daniel Townsend",
author_email="dan@dantownsend.co.uk",
python_requires=">=3.8.0",
url="https://github.com/piccolo-orm/piccolo_admin",
packages=find_packages(exclude=("tests",)),
install_requires=REQUIREMENTS,
extras_require=extras_require(),
license="MIT",
include_package_data=True,
entry_points={
"console_scripts": ["admin_demo = piccolo_admin.example.app:main"],
},
classifiers=[
"License :: OSI Approved :: MIT License",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: Implementation :: CPython",
"Topic :: Database :: Front-Ends",
"Topic :: Internet :: WWW/HTTP :: Dynamic Content :: Content Management System", # noqa: E501
],
)