forked from martinpitt/python-dbusmock
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
executable file
·45 lines (39 loc) · 1.47 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
41
42
43
44
45
#!/usr/bin/python3
import setuptools
# Work around "TypeError: 'NoneType' object is not callable"
# during `python setup.py test`
# http://www.eby-sarna.com/pipermail/peak/2010-May/003357.html
import multiprocessing
multiprocessing # pyflakes
with open('README.rst') as f:
readme = f.read()
with open('NEWS', 'rb') as f:
version = f.readline().split()[0].decode()
setuptools.setup(
name='python-dbusmock',
version=version,
description='Mock D-Bus objects',
long_description=readme,
author='Martin Pitt',
author_email='[email protected]',
url='https://launchpad.net/python-dbusmock',
download_url='https://launchpad.net/python-dbusmock/+download',
license='LGPL 3+',
packages=['dbusmock', 'dbusmock.templates'],
test_suite='nose.collector',
classifiers=[
'Programming Language :: Python',
'Programming Language :: Python :: 2',
'Programming Language :: Python :: 3',
'Development Status :: 3 - Alpha',
'Environment :: Other Environment',
'Intended Audience :: Developers',
'License :: OSI Approved :: GNU Lesser General Public License v3 or later (LGPLv3+)',
'Operating System :: POSIX :: Linux',
'Operating System :: POSIX :: BSD',
'Operating System :: Unix',
'Topic :: Software Development :: Quality Assurance',
'Topic :: Software Development :: Testing',
'Topic :: Software Development :: Libraries :: Python Modules',
],
)