-
Notifications
You must be signed in to change notification settings - Fork 1
/
setup.py
40 lines (37 loc) · 1.22 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
from setuptools import setup, find_packages
import versioneer
from pathlib import Path
here = Path(__file__).resolve().parent
long_description = here.joinpath('README.md').read_text()
setup(
name='mantichora',
version=versioneer.get_version(),
cmdclass=versioneer.get_cmdclass(),
description='A simple interface to multiprocessing and threading',
long_description=long_description,
long_description_content_type='text/markdown',
author='Tai Sakuma',
author_email='[email protected]',
url='https://github.com/alphatwirl/mantichora',
classifiers=[
'Development Status :: 4 - Beta',
'Intended Audience :: Developers',
'Intended Audience :: End Users/Desktop',
'License :: OSI Approved :: BSD License',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3.8',
'Programming Language :: Python :: 3.9',
],
packages=find_packages(exclude=['docs', 'tests']),
install_requires=[
'atpbar>=1.0.8'
],
extras_require={
'tests': [
'pytest>=5.4',
'pytest-cov>=2.8',
'pytest-console-scripts>=0.2',
],
}
)