-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
44 lines (41 loc) · 1.35 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
41
42
43
44
from setuptools import find_packages, setup
import versioneer
with open("README.rst", "r") as fp:
LONG_DESCRIPTION = fp.read()
setup(
name="enhanced_queue",
version=versioneer.get_version(),
cmdclass=versioneer.get_cmdclass(),
author="Simon-Martin Schroeder",
author_email="[email protected]",
description="An enhanced version of multiprocessing.Queue",
long_description=LONG_DESCRIPTION,
long_description_content_type="text/x-rst",
# url="https://github.com/morphocut/morphocut",
packages=find_packages("src"),
package_dir={"": "src"},
include_package_data=True,
# install_requires=["numpy", "scikit-image>=0.16.0", "pandas", "tqdm", "scipy"],
# python_requires=">=3.6",
extras_require={
"tests": [
# Pytest
"pytest",
"pytest-cov",
],
# "docs": [
# "sphinx ~= 2.2",
# "sphinx_rtd_theme",
# "sphinxcontrib-programoutput",
# "sphinx-autodoc-typehints>=1.10.0",
# ],
},
classifiers=[
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Development Status :: 3 - Alpha",
],
)