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
|
"""
Project Grumpy
--------------
Project Grumpy is a an application and a set of utilities aimed to improve
life for Gentoo developers.
"""
from setuptools import setup
setup(
name='Grumpy',
version='0.0',
url='http://git.overlays.gentoo.org/gitweb/?p=proj/grumpy.git;a=summary',
license='BSD',
author='Priit Laes',
author_email='plaes@plaes.org',
description='Set of QA helpers for Gentoo Developers',
long_description=__doc__,
packages=['grumpy'],
zip_safe=False,
platforms='any',
install_requires=[
'pkgcore',
'snakeoil',
'SQLAlchemy >= 0.6',
],
classifiers=[
'Development Status :: 1 - Planning',
'Environment :: Other Environment',
'Environment :: Web Environment',
'Intended Audience :: Developers',
'License :: OSI Approved :: BSD License',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Topic :: Software Development :: Quality Assurance',
'Topic :: Utilities'
]
)
|