-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
26 lines (23 loc) · 713 Bytes
/
setup.py
File metadata and controls
26 lines (23 loc) · 713 Bytes
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
#!/usr/bin/env python
import setuptools
CLASSIFIERS = """\
Development Status :: 5 - Production/Stable
Intended Audience :: Developers
License :: OSI Approved :: BSD License
Programming Language :: Python
Programming Language :: Python :: 3.7
Topic :: Software Development
"""
setuptools.setup(
name='mp_manager',
description='Simple python multiprocessing manager',
long_description=open('README.rst').read(),
version='0.2',
author='Dmitriy Pomazunovskiy',
author_email='forestwheel@gmail.com',
classifiers=[_f for _f in CLASSIFIERS.split('\n') if _f],
url='https://github.com/dmiwell/mp_manager',
license='BSD',
setup_requires=['wheel'],
packages=['mp_manager']
)