-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
32 lines (31 loc) · 894 Bytes
/
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
import os
from setuptools import setup, find_packages
here = os.path.abspath(os.path.dirname(__file__))
with open(os.path.join(here, 'requirements.txt')) as f:
requires = f.read()
setup(
name='aptlyweb',
version='0.8.4',
description='Aptly web UI',
long_description='',
classifiers=[
"Programming Language :: Python",
"Framework :: Flask",
"Topic :: Internet :: WWW/HTTP",
],
author='',
author_email='[email protected]',
url='',
keywords='web flask',
packages=find_packages(exclude=['*node_modules*']),
include_package_data=True,
zip_safe=False,
install_requires=requires,
entry_points={
'console_scripts': [
'aptlyweb_start = aptlyweb.run:main',
'aptlyweb_init_db = aptlyweb.run:init_db',
'aptlyweb_set_admin = aptlyweb.run:set_admin',
]
}
)