forked from williamh/PyZilla
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
25 lines (24 loc) · 849 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
from distutils.core import setup
setup(
name='PyZilla',
version='0.1.0',
author='Noufal Ibrahim',
author_email='[email protected]',
url='http://github.com/nibrahim/PyZilla',
py_modules = ['pyzilla'],
license='LICENSE.txt',
description='Python wrapper for the BugZilla XML-RPC API',
long_description=open('README.txt').read(),
classifiers=[
'Development Status :: 4 - Beta'
'Intended Audience :: Developers',
'License :: OSI Approved :: GNU General Public License (GPL)'
'Operating System :: POSIX',
'Operating System :: Microsoft :: Windows',
'Operating System :: MacOS :: MacOS X',
'Topic :: Software Development :: Libraries :: Python Modules'
'Topic :: Software Development :: Quality Assurance',
'Topic :: Utilities',
'Programming Language :: Python'
]
)