-
Notifications
You must be signed in to change notification settings - Fork 11
Expand file tree
/
Copy pathsetup.py
More file actions
58 lines (55 loc) · 1.64 KB
/
Copy pathsetup.py
File metadata and controls
58 lines (55 loc) · 1.64 KB
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
from setuptools import setup, find_packages
install_requires = [
"tornado>=6.5.1",
"uvloop>=0.19.0; sys_platform == 'linux'",
"ldap3>=2.9.1",
"aiofiles>=23.0.0",
"argon2-cffi>=23.1.0",
"requests>=2.31.0",
"chardet>=5.0.0,<6.0.0",
"pyasn1>=0.6.2",
"webauthn>=2.0.0",
]
extras_require = {
"compress": ["zstandard>=0.22.0"],
"native": ["maturin>=1.4,<2"],
"chat": ["bleach>=6.0"],
"all": ["zstandard>=0.22.0", "maturin>=1.4,<2", "bleach>=6.0"],
}
setup(
name="aird",
version="0.5.2",
packages=find_packages(),
include_package_data=True,
package_data={"aird": [
"templates/*.html",
"static/css/*.css",
"static/css/**/*.css",
"static/js/*.js",
"static/js/**/*.js",
"static/img/*",
"static/img/**/*",
"static/favicon.*",
]},
entry_points={
"console_scripts": [
"aird=aird.main:main",
"aird-cli=aird.cli.main:main",
],
},
install_requires=install_requires,
extras_require=extras_require,
author="Viswantha Srinivas P",
author_email="psviswanatha@gmail.com", # Please fill this in
description="Aird - A lightweight web-based file browser, editor, and streamer with real-time capabilities",
url="https://github.com/blinkerbit/aird",
long_description=open("README.md", encoding="utf-8").read(),
long_description_content_type="text/markdown",
license="Custom",
classifiers=[
"Programming Language :: Python :: 3",
"License :: Other/Proprietary License",
"Operating System :: OS Independent",
],
python_requires=">=3.10",
)