-
Notifications
You must be signed in to change notification settings - Fork 52
/
setup.py
30 lines (26 loc) · 805 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
import io
import os
from setuptools import setup, find_packages
def read(filename):
filepath = os.path.join(os.path.dirname(__file__), filename)
with io.open(filepath, mode='r', encoding='utf-8') as f:
return f.read()
setup(
name='pytest-watch',
version='4.2.0',
description='Local continuous test runner with pytest and watchdog.',
long_description=read('README.rst'),
author='Joe Esposito',
author_email='joe@joeyespo.com',
url='http://github.com/joeyespo/pytest-watch',
license='MIT',
platforms='any',
packages=find_packages(),
install_requires=read('requirements.txt').splitlines(),
entry_points={
'console_scripts': [
'pytest-watch = pytest_watch:main',
'ptw = pytest_watch:main',
]
},
)