This repository was archived by the owner on Jan 31, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
61 lines (56 loc) · 1.58 KB
/
setup.py
File metadata and controls
61 lines (56 loc) · 1.58 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
57
58
59
60
61
"""setup module."""
import re
from pathlib import Path
from setuptools import find_packages, setup
name = "mse_home"
version = re.search(
r"""(?x)
__version__
\s=\s
\"
(?P<number>.*)
\"
""",
Path(f"{name}/__init__.py").read_text(),
)
setup(
name=name,
version=version["number"],
url="https://cosmian.com",
license="MIT",
project_urls={
"Documentation": "https://docs.cosmian.com",
"Source": "https://github.com/Cosmian/mse-home-cli",
},
author="Cosmian Tech",
author_email="tech@cosmian.com",
long_description=Path("README.md").read_text(),
long_description_content_type="text/markdown",
python_requires=">=3.8.0",
description="Python CLI for MicroService Encryption Home",
packages=find_packages(),
zip_safe=True,
install_requires=[
"cryptography>=41.0.1,<42.0.0",
"docker>=6.0.1,<7.0.0",
"intel-sgx-ra==2.0a11",
"jinja2>=3.0,<3.1",
"mse-cli-core==0.1a8",
"mse-lib-crypto>=1.3,<1.4",
"pydantic>=1.10.2,<2.0.0",
"requests>=2.31.0,<3.0.0",
"toml>=0.10.2,<0.11.0",
],
entry_points={
"console_scripts": ["msehome = mse_home.main:main"],
},
package_data={"mse_home": ["template/*", "template/**/*"]},
tests_require=["pytest>=7.2.0,<7.3.0"],
classifiers=[
"Development Status :: 5 - Production/Stable",
"Environment :: Console",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
],
)