-
Notifications
You must be signed in to change notification settings - Fork 3
/
setup.py
46 lines (42 loc) · 1.37 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
# PyDCC setup script for generating PyDCC package
#
# Copyright (c) Siemens AG, 2021
#
# Authors:
# Andreas Tobola, Siemens AG
#
# This work is licensed under the terms of the MIT License.
# See the LICENSE file in the top-level directory.
#
# SPDX-License-Identifier: MIT
#
from setuptools import setup
with open('README.md') as file:
long_description = file.read()
with open('next_version.txt', 'r') as file:
current_version = file.read()
setup(
name="pydcc",
version=current_version,
author="Andreas Tobola",
author_email="[email protected]",
description=("Library for handling digital calibration certificates (DCC). "),
license="MIT License",
keywords="digital calibration certificate measurement uncertainty precision GUM DCC",
url="https://github.com/siemens/pydcc",
packages=['dcc'],
include_package_data=True,
long_description=long_description,
long_description_content_type="text/markdown",
classifiers=[
"Development Status :: 3 - Alpha",
"Topic :: Utilities",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.8",
"Operating System :: OS Independent",
],
install_requires=[
'xmlschema > 1.5', 'requests', 'signxml >= 3.1.0', 'certvalidator', 'asn1crypto', 'cryptography', 'pydantic'
]
)