-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
51 lines (45 loc) · 1.1 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
45
46
47
48
49
50
51
from distutils.core import setup
def get_readme_contents():
with open("README.md") as rfh:
return rfh.read().strip()
dev_deps = [
"black",
"flake8",
"ruff",
]
test_deps = [
"pytest",
]
setup(
author_email="[email protected]",
author="Joseph Bylund",
description=" ".join(
[
"Provide locks with interface similar to those from threading",
"and multiprocessing, which are applicable in other situations.",
]
),
long_description_content_type="text/markdown",
long_description=get_readme_contents(),
maintainer_email="[email protected]",
maintainer="Joseph Bylund",
install_requires=[
"boto3>=1.10.23",
"redis>=3.3.11",
],
extras_require={
"all": dev_deps + test_deps,
"dev": dev_deps,
"test": test_deps,
},
name="locking",
packages=[
"locking",
"locking.dynamolock",
"locking.filelock",
"locking.redislock",
"locking.socketlock",
],
url="https://github.com/jbylund/locking",
version="1.1.5",
)