-
Notifications
You must be signed in to change notification settings - Fork 5
/
setup.py
37 lines (33 loc) · 1.07 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
#!/usr/bin/env python
# -*- coding: utf-8 -*-
from setuptools import setup
long_desc = open('README.rst').read()
setup(
name="aptly-gui",
version="0.1.0",
description="Aptly GUI based on python-aptly",
long_description=long_desc,
author="Cedric Hnyda",
author_email="[email protected]",
url='https://github.com/chnyda/python-aptly-gui',
license='GPLv2',
packages=['aptlygui', 'aptlygui.model', 'aptlygui.views', 'aptlygui.workers', 'aptlygui.widgets'],
install_requires=[
'requests>=0.14',
'pyqt5',
'python-aptly',
],
entry_points={
'console_scripts': ['aptly-gui = aptlygui.__main__:main']
},
classifiers=[
'Development Status :: 4 - Beta',
'Environment :: Console',
'Intended Audience :: System Administrators',
'License :: OSI Approved :: GNU General Public License v2 (GPLv2)',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Programming Language :: Python :: 3',
],
keywords='aptly debian repository gui',
)