-
Notifications
You must be signed in to change notification settings - Fork 1
/
setup.py
56 lines (52 loc) · 1.8 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
"""Photos.network setup script"""
import sys
from setuptools import setup
from frontend import const
if sys.version_info < (3, 0):
print("{PROJECT_NAME} requires python version >= 3.0")
sys.exit(1)
setup(
name="frontend",
version=const.FRONTEND_VERSION,
description="The default web frontend for photos.network",
long_description="The default web frontend for photos.network to manage components.",
author="The Photos.network Authors",
author_email="devs@photos.network",
url="https://developers.photos.network/frontend/",
license="Apache License 2.0",
classifiers=[
"Intended Audience :: End Users/Desktop",
"Intended Audience :: Developers",
"License :: OSI Approved :: Apache Software License",
"Operating System :: OS Independent",
"Topic :: Software Development :: Libraries :: Python Modules",
"Topic :: Scientific/Engineering :: Atmospheric Science",
"Development Status :: 5 - Production/Stable",
"Intended Audience :: Developers",
"Programming Language :: Python :: 3.10",
],
keywords=["docker", "photos-network", "api"],
zip_safe=False,
platforms="any",
packages=[
"frontend",
"frontend.base",
"frontend.static",
"frontend.templates",
"frontend.views",
],
entry_points={"console_scripts": ["frontend = frontend.__main__:main"]},
include_package_data=True,
package_data={
"frontend": ["locales/**/**/*.mo", "static/**", "templates/*.jinja2", "templates/**/*.jinja2"],
},
install_requires=[
"aiohttp>=3.7.0,<4.0",
"python-i18n>=0.3.9",
"aiohttp-jinja2==1.5",
"aiohttp_session==2.11.0",
"aioauth-client==0.27.3",
"cryptography==37.0.4",
"colorlog==6.6.0",
],
)