-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
59 lines (59 loc) · 1.77 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
from pathlib import Path
from setuptools import find_packages, setup
dependencies = [
"nut2",
"Flask",
"flask_sqlalchemy",
"pytz",
"PyYAML",
"requests"
]
# read the contents of README file
this_directory = Path(__file__).parent
long_description = (this_directory / "README.md").read_text()
setup(
name='nutui',
packages=find_packages(),
version='0.1.8',
description="Nut Web UI using Flask",
author="The Bearded Tek",
author_email="[email protected]",
url="https://github.com/beardedtek-com/nutui",
long_description=long_description,
long_description_content_type='text/markdown',
license='AGPLv3',
project_urls={
"Bug Tracker": "https://github.com/beardedtek-com/nutui/issues",
"Funding": "https://github.com/sponsors/BeardedTek-com",
"Source": "https://github.com/beardedtek-com/nutui/",
},
python_requires=">=3.6, <4",
keywords=[
"ups",
"nut-server",
"nutd",
"nut",
"battery-backup",
"apc",
"cyberpower",
"tripp-lite"
],
classifiers=[
"Environment :: Web Environment",
"License :: OSI Approved :: GNU Affero General Public License v3 or later (AGPLv3+)",
"Topic :: System :: Power (UPS)",
"Topic :: Utilities",
"Development Status :: 3 - Alpha",
"Framework :: Flask",
"Intended Audience :: End Users/Desktop",
"Intended Audience :: Information Technology",
"Intended Audience :: System Administrators"
],
install_requires=dependencies,
py_modules=['nutui','app'],
entry_points={
'console_scripts': [
"nutui=nutui:main"
],
},
)