-
Notifications
You must be signed in to change notification settings - Fork 12
/
setup.py
40 lines (38 loc) · 1.38 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
39
40
from setuptools import setup, find_packages
version = '0.1'
setup(name='github-apt-repos',
version=version,
description="Host Debian/Ubuntu APT repositories on GitHub releases.",
long_description=open('README.rst').read(),
classifiers=[
'Development Status :: 3 - Alpha',
'Environment :: Console',
'Intended Audience :: Developers',
'License :: OSI Approved :: GNU General Public License (GPL)',
'Natural Language :: English',
'Operating System :: POSIX :: Linux',
'Programming Language :: Python',
'Topic :: Software Development',
'Topic :: Software Development :: Build Tools',
'Topic :: Software Development :: Version Control :: Git',
'Topic :: System :: Software Distribution',
'Topic :: Utilities',
],
keywords='git github apt debian ubuntu deb dpkg',
author='Ross Patterson',
author_email='[email protected]',
url='https://github.com/rpatterson/github-apt-repos',
license='GPL',
packages=find_packages(exclude=['ez_setup', 'examples', 'tests']),
include_package_data=True,
zip_safe=False,
install_requires=[
'python-gnupg',
'github3.py',
],
entry_points={
'console_scripts': [
'github-apt-repos=githubaptrepos:main',
],
},
)