-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
45 lines (38 loc) · 1.05 KB
/
Copy pathsetup.py
File metadata and controls
45 lines (38 loc) · 1.05 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
from pathlib import Path
from setuptools import setup
from pbatch import version
ROOT_DIRECTORY = Path(__file__).resolve().parent
description = "Parallel batch processing on top of regular python functions"
readme = (ROOT_DIRECTORY / "README.md").read_text()
changelog = (ROOT_DIRECTORY / "CHANGELOG.md").read_text()
long_description = readme + "\n\n" + changelog
DEV_REQUIRES = [
"black==20.8b1",
"coverage==5.2.1",
"flake8==3.8.3",
"flake8-bugbear==20.1.4",
"isort==5.5.1",
"mypy==0.782",
"pytest==6.0.1",
"pytest-cov==2.10.1",
"twine==3.2.0",
]
setup(
name="pbatch",
version=version.VERSION,
description=description,
long_description=long_description,
long_description_content_type="text/markdown",
classifiers=[
"Programming Language :: Python :: 3",
],
author="Naya Verdier",
url="https://github.com/nayaverdier/pbatch",
license="MIT",
packages=["pbatch"],
python_requires=">=3.7",
extras_require={
"dev": DEV_REQUIRES,
# "docs": DOCS_REQUIRES,
},
)