-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
58 lines (57 loc) · 2.17 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
52
53
54
55
56
57
58
from setuptools import find_packages
from setuptools import setup
setup(
name="with-cloud-blob",
description="",
long_description=open("README.md").read(), # no "with..." will do for setup.py
long_description_content_type="text/markdown; charset=UTF-8; variant=GFM",
license="MIT",
author="Kyrylo Shpytsya",
author_email="[email protected]",
url="https://github.com/kshpytsya/with-cloud-blob",
setup_requires=["setuptools_scm"],
use_scm_version=True,
python_requires=">=3.7, <3.9",
packages=find_packages(where="src"),
package_data={"with_cloud_blob": ["*_schemas.json"]},
package_dir={"": "src"},
entry_points={
"console_scripts": ["with-cloud-blob = with_cloud_blob._cli:main"],
"with_cloud_blob.lock_backends": [
"file = with_cloud_blob.backends.lock_file:Backend",
"dynamodb = with_cloud_blob.backends.lock_dynamodb:Backend",
],
"with_cloud_blob.storage_backends": [
"file = with_cloud_blob.backends.storage_file:Backend",
"s3 = with_cloud_blob.backends.storage_s3:Backend",
],
},
classifiers=[
"Development Status :: 4 - Beta",
# "Development Status :: 5 - Production/Stable",
"Intended Audience :: Developers",
"Intended Audience :: Information Technology",
"Intended Audience :: System Administrators",
"License :: OSI Approved :: MIT License",
# "Operating System :: MacOS :: MacOS X",
# "Operating System :: Microsoft :: Windows",
"Operating System :: POSIX",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Topic :: Security :: Cryptography",
"Topic :: System :: Installation/Setup",
"Topic :: System :: Software Distribution",
"Topic :: System :: Systems Administration",
],
install_requires=[
"atomicwrites>=1.4.0,<2",
"boto3>=1.14.18,<2",
"click>=7.1.2,<8",
"click-log>=0.3.2,<1",
"fastavro>=0.23.5,<1",
"filelock>=3.0.12,<4",
"implements>=0.2.0,<1",
"pynacl>=1.4.0,<2",
"python_dynamodb_lock>=0.9.1,<1",
],
)