-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
executable file
·42 lines (37 loc) · 1.3 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
#!/usr/bin/env python
# -*- coding: utf-8 -*-
import esteid_certificates
from setuptools import setup
version = esteid_certificates.__version__
readme = open('README.md').read()
setup(
name='esteid-certificates',
version=version,
description="Certificates for Estonian e-identity services",
long_description=readme,
long_description_content_type='text/markdown',
author='Thorgate',
author_email='[email protected]',
url='https://github.com/thorgate/esteid-certificates',
packages=[
'esteid_certificates',
],
include_package_data=True,
install_requires=[],
license="ISC",
keywords='esteid asice xades smartid smart-id mobiilid mobileid mobile-id idcard',
classifiers=[
'Development Status :: 5 - Production/Stable',
'Intended Audience :: Developers',
'License :: OSI Approved :: BSD License',
'Natural Language :: English',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3.8',
'Programming Language :: Python :: 3.9',
'Programming Language :: Python :: 3.10',
'Programming Language :: Python :: 3.11',
'Programming Language :: Python :: 3.12',
],
)