-
Notifications
You must be signed in to change notification settings - Fork 1
/
setup.py
42 lines (41 loc) · 914 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
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
import sys
import os
import shutil
import re
from setuptools import setup
setup(
name='cuvner',
use_incremental=True,
setup_requires=['incremental'],
description='A commanding (terminal) view of your test-coverage.',
long_description=open('cuv/README.rst', 'r').read(),
keywords=['python', 'coverage'],
install_requires=[
'pygments',
'click',
'ansicolors==1.0.2',
'coverage',
'six',
'incremental',
'unidiff',
'watchdog',
],
extras_require={
"dev": [
"Sphinx",
"wheel",
"twine",
]
},
author='meejah',
author_email='[email protected]',
url='https://meejah.ca/projects/cuvner',
license='MIT',
packages=['cuv'],
include_package_data=True,
entry_points={
'console_scripts': [
'cuv=cuv.cli:cuv',
],
},
)