-
-
Notifications
You must be signed in to change notification settings - Fork 17
/
setup.py
49 lines (45 loc) · 1.13 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
46
47
48
49
#/usr/bin/env python
import sys
from setuptools import setup
from duvet import VERSION
try:
readme = open('README.rst')
long_description = str(readme.read())
finally:
readme.close()
required_pkgs = [
'coverage',
'tkreadonly',
]
if sys.version_info < (2, 7):
required_pkgs.append('argparse')
setup(
name='duvet',
version=VERSION,
description='A GUI tool for visualizing code coverage results.',
long_description=long_description,
author='Russell Keith-Magee',
author_email='[email protected]',
url='http://pybee.org/duvet',
packages=[
'duvet',
],
install_requires=required_pkgs,
scripts=[],
entry_points={
'console_scripts': [
'duvet = duvet.__main__:main',
]
},
license='New BSD',
classifiers=[
'Development Status :: 4 - Beta',
'Intended Audience :: Developers',
'License :: OSI Approved :: BSD License',
'Operating System :: OS Independent',
'Programming Language :: Python :: 2',
'Topic :: Software Development',
'Topic :: Utilities',
],
test_suite='tests'
)