-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsetup.py
executable file
·29 lines (27 loc) · 1001 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
#!/usr/bin/env python
# -*- coding: utf-8 -*-
try:
from setuptools import setup, find_packages
except:
from distutils.core import setup, find_packages
setup(
name = 'rpmquality',
version = '0.1',
description = 'Short description',
long_description = 'Long description',
keywords = 'some, keywords',
author = 'Honza Horak',
author_email = 'hhorak@redhat.com',
license = 'MIT',
packages = find_packages(),
entry_points={'console_scripts':['rpmquality = rpmquality.bin:main']},
classifiers = ['Development Status :: 3 - Alpha',
'Environment :: Console',
'Intended Audience :: Developers',
'License :: OSI Approved :: MIT License',
'Operating System :: POSIX :: Linux',
'Programming Language :: Python',
'Topic :: Software Development :: Build Tools',
'Topic :: System :: Software Distribution',
]
)