forked from grongierisc/iris-pkcs7-util
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
55 lines (49 loc) · 1.76 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
# Licensed under the MIT License
# https://github.com/grongierisc/iris_pex_embedded_python/blob/main/LICENSE
import os
from setuptools import setup
def main():
# Read the readme for use as the long description
with open(os.path.join(os.path.abspath(os.path.dirname(__file__)),
'README.md'), encoding='utf-8') as readme_file:
long_description = readme_file.read()
# Do the setup
setup(
name='iris-gen-cms',
description='iris-gen-cms',
long_description=long_description,
long_description_content_type='text/markdown',
version='0.0.1',
author='grongier',
author_email='[email protected]',
keywords='iris-gen-cms',
url='https://github.com/grongierisc/iris-pkcs7-util',
license='MIT',
classifiers=[
'Development Status :: 5 - Production/Stable',
'Intended Audience :: Developers',
'License :: OSI Approved :: MIT License',
'Operating System :: OS Independent',
'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',
'Topic :: Utilities'
],
package_dir={'': 'src'},
packages=['gencms'],
python_requires='>=3.6',
install_requires=[
"asn1crypto==1.5.1",
"pyOpenSSL==23.1.1"
],
entry_points={
'console_scripts': [
'gencms = gencms.cli:main',
],
}
)
if __name__ == '__main__':
main()