-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
39 lines (37 loc) · 1.21 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
import setuptools
with open("README.md", "r", encoding="utf-8") as fh:
long_description = fh.read()
setuptools.setup(
name="mvarcs",
version="0.1.1",
author="OllieJC",
author_email="[email protected]",
description="Python package for providing the MVA Root Certificates Store",
long_description=long_description,
long_description_content_type="text/markdown",
url="https://github.com/markcerts/mvarcs-python",
project_urls={
"Bug Tracker": "https://github.com/markcerts/mvarcs-python/issues",
"MVARCS": "https://github.com/markcerts/mvarcs",
},
license="The Unlicense",
classifiers=[
"Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"License :: OSI Approved :: The Unlicense (Unlicense)",
"Programming Language :: Python :: 3",
"Natural Language :: English",
"Operating System :: OS Independent",
],
keywords = [
"BIMI",
"VMC",
"CMC",
"Verification",
"Trusted",
],
package_dir={"mvarcs": "src"},
package_data={"mvarcs": ["mvarcs/*.pem"]},
packages=["mvarcs"],
python_requires=">=3.6",
)