-
-
Notifications
You must be signed in to change notification settings - Fork 98
Expand file tree
/
Copy pathsetup.py
More file actions
20 lines (19 loc) · 668 Bytes
/
setup.py
File metadata and controls
20 lines (19 loc) · 668 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
from setuptools import find_packages, setup
setup(
name="etebase_server",
version="0.14.2",
description="An Etebase (EteSync 2.0) server",
url="https://www.etebase.com/",
classifiers=[
"Development Status :: 5 - Production/Stable",
"Framework :: Django",
"Framework :: FastAPI",
"Intended Audience :: System Administrators",
"License :: OSI Approved :: GNU Affero General Public License v3",
],
packages=find_packages(include=["etebase_server", "etebase_server.*"]),
install_requires=list(open("requirements.in/base.txt")),
package_data={
"etebase_server": ["templates/*"],
},
)