forked from sybrenjansen/mpire
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
56 lines (48 loc) · 1.9 KB
/
setup.py
File metadata and controls
56 lines (48 loc) · 1.9 KB
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
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
import platform
from setuptools import find_packages, setup
# On Windows, we need pywin32 for CPU pinning
additional_dependencies = ["pywin32==225"] if platform.system() == "Windows" else []
def read_description():
with open("README.rst") as file:
return file.read()
if __name__ == "__main__":
setup(
name="mpire",
version="2.2.1",
author="Slimmer AI",
description="A Python package for easy multiprocessing, but faster than multiprocessing",
long_description=read_description(),
url="https://github.com/Slimmer-AI/mpire",
license="MIT",
packages=find_packages(),
scripts=["bin/mpire-dashboard"],
install_requires=["tqdm"] + additional_dependencies,
include_package_data=True,
extras_require={
"dashboard": ["flask"],
"dill": ["multiprocess"],
"docs": ["sphinx==3.2.1",
"sphinx-rtd-theme==0.5.0",
"sphinx-autodoc-typehints==1.11.0",
"sphinxcontrib-images==0.9.2",
"sphinx-versions==1.0.1"],
"testing": ["multiprocess", "numpy"] + additional_dependencies
},
test_suite="tests",
tests_require=["multiprocess", "numpy"],
classifiers=[
# Development status
"Development Status :: 5 - Production/Stable",
# Supported Python versions
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
# License
"License :: OSI Approved :: MIT License",
# Topic
"Topic :: Software Development",
"Topic :: Software Development :: Libraries",
"Topic :: Software Development :: Libraries :: Python Modules"
]
)