-
Notifications
You must be signed in to change notification settings - Fork 2
/
setup.py
49 lines (45 loc) · 1.31 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
#!/usr/bin/env python
import pathlib
from setuptools import find_packages, setup
PROJECT_ROOT = pathlib.Path(__file__).parent
README = (PROJECT_ROOT / "README.md").read_text()
setup(
name="tilda",
version="0.0.1",
description="REST API based on Freenit",
long_description=README,
long_description_content_type="text/markdown",
url="https://github.com/organization/backend",
author="John Doe",
author_email="john@example.com",
license="BSD",
classifiers=[
"Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"Topic :: Internet :: WWW/HTTP",
"Environment :: Web Environment",
"Framework :: FastAPI",
"License :: OSI Approved :: BSD License",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
],
keywords=[
"REST",
"openapi",
"swagger",
"fastapi",
],
packages=find_packages(exclude=["tests*"]),
python_requires=">=3.8",
install_requires=[
"freenit[ormar]",
"mail-parser",
],
extras_require={
"build": ["freenit[build]"],
"dev": ["freenit[dev]"],
"test": ["freenit[test]"],
},
)