-
Notifications
You must be signed in to change notification settings - Fork 13
/
setup.py
executable file
·38 lines (35 loc) · 1.12 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
#!/usr/bin/env python
# -*- coding: utf-8 -*-
from setuptools import setup
long_desc = open('README.rst').read()
setup(
name="python-aptly",
version="0.12.12",
description="Aptly REST API client and tooling",
long_description=long_desc,
author="Filip Pytloun",
author_email="[email protected]",
url='https://github.com/tcpcloud/python-aptly',
license='GPLv2',
packages=['aptly', 'aptly.publisher'],
install_requires=[
'requests>=0.14',
'PyYaml',
'python-apt',
],
entry_points={
'console_scripts': ['aptly-publisher = aptly.publisher.__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 :: 2',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3',
],
keywords='aptly debian repository',
)