-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathsetup.py
28 lines (26 loc) · 958 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
from setuptools import setup, find_packages
from pathlib import Path
this_directory = Path(__file__).parent.absolute()
long_description = Path(this_directory, 'README.md').read_text(encoding='utf-8')
setup(
name='streamcapture',
description='Capture output streams such as sys.stdout and sys.stderr.',
version='1.2.5',
packages=find_packages(),
install_requires=['setuptools'],
extras_require={
"doc": ['pdoc3>=0.7'],
},
python_requires='>=3',
author='Sébastien Loisel',
author_email='[email protected]',
zip_safe=False,
url='https://github.com/sloisel/streamcapture',
project_urls={
'Documentation': 'https://htmlpreview.github.io/?https://github.com/sloisel/streamcapture/blob/master/streamcapture.html',
'Source': 'https://github.com/sloisel/streamcapture',
},
license='MIT',
long_description=long_description,
long_description_content_type='text/markdown',
)