-
Notifications
You must be signed in to change notification settings - Fork 9
Expand file tree
/
Copy pathsetup.py
More file actions
executable file
·28 lines (25 loc) · 791 Bytes
/
setup.py
File metadata and controls
executable file
·28 lines (25 loc) · 791 Bytes
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
#!/usr/bin/env python
# coding: utf-8
from setuptools import setup
VERSION = "1.0.8"
AUTHORS = '''\
Olof Bjarnason, Fredrik Wendt, Krunoslav Saho,
Samuel Ytterbrink, Rafael Capucho, Ilian Iliev,
Henrik Bohre, Wari Wahab, Maximilien Riehl,
Javier J. Gutiérrez'''
HOMEPAGE = "http://pytddmon.org"
if __name__ == '__main__':
setup(
name='pytddmon',
version=VERSION,
description='continuous unit testing in Python',
long_description='Read the pytddmon blog and more documentation at ' +
'http://pytddmon.org',
author=AUTHORS,
author_email="olof.bjarnason@gmail.com",
license='MIT',
url=HOMEPAGE,
scripts=['src/pytddmon.py'],
test_suite='nose.collector',
zip_safe=True
)