-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
33 lines (32 loc) · 870 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
"""
Bear
-----------
bear is a pipeline allowing you to run tasks in parallel in such
a way that it truely used multiple cores of your processor
Link
`````
* Source
https://github.com/kouroshparsa/bear
"""
from setuptools import setup, find_packages
version = '2.1'
setup(
name='bear',
version=version,
url='https://github.com/kouroshparsa/bear',
download_url='https://github.com/kouroshparsa/bear/packages/%s' % version,
license='GNU',
author='Kourosh Parsa',
author_email="[email protected]",
description='asynchronous parallelization pipeline',
long_description=__doc__,
packages=find_packages(),
install_requires = ['psutil', 'matplotlib'],
include_package_data=True,
package_data = {'bear': []},
zip_safe=False,
platforms='all',
classifiers=[
'Programming Language :: Python',
]
)