-
Notifications
You must be signed in to change notification settings - Fork 155
/
setup.py
36 lines (35 loc) · 1.15 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
# -*- coding: UTF-8 -*-
from setuptools import setup, find_packages
from app import __metadata__ as meta
setup(
name=meta.APP_NAME,
version = meta.VERSION,
description='{} v{}'.format(meta.APP_NAME, meta.VERSION),
long_description='{} v{}'.format(meta.APP_NAME, meta.VERSION),
classifiers=[
'Development Status :: 2.0 - Stable',
'Programming Language :: Python :: 3.5',
'Intended Audience :: Developers',
'Intended Audience :: System Administrators',
'Framework :: Flask',
'Topic :: System :: Containers',
'Topic :: System :: Clustering',
'Topic :: System :: Monitoring',
'License :: OSI Approved :: Apache Software License',
'Operating System :: POSIX :: Linux'
],
keywords=meta.KEYWORDS,
author=meta.AUTHOR,
author_email=meta.AUTHOR_EMAIL,
url = meta.AUTHOR_URL,
license=meta.LICENSE,
packages=find_packages(exclude=['conf/lxdui.conf',]) + ['conf', 'logs'],
include_package_data=True,
zip_safe=False,
install_requires=open('requirements.txt').read().splitlines(),
entry_points={
'console_scripts': [
'lxdui = app.run:lxdui'
]
}
)