-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsetup.py
24 lines (23 loc) · 947 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
import setuptools
setuptools.setup(
install_requires=['pyyaml'],
author = 'Caleb Boylan',
name = 'apt_package_mirror',
description = 'Python script for running an apt package mirror',
author_email = '[email protected]',
url = 'https://github.com/squidboylan/apt-package-mirror',
version = '1.0.2',
classifiers = [
'Development Status :: 5 - Production/Stable',
'Intended Audience :: System Administrators',
'License :: OSI Approved :: Apache Software License',
'Operating System :: POSIX :: Linux',
'Programming Language :: Python',
'Programming Language :: Python :: 2',
'Programming Language :: Python :: 2.7',
],
packages=setuptools.find_packages(),
entry_points = {
'console_scripts': ['apt_package_mirror=apt_package_mirror.__main__:main'],
}
)