forked from Futsch1/asn1editor
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
38 lines (33 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
import re
from setuptools import find_packages
from setuptools import setup
def find_version():
return re.search(r'^__version__ = "(.*)"$',
open('asn1editor/__init__.py', 'r').read(),
re.MULTILINE).group(1)
setup(name='asn1editor',
version=find_version(),
description='ASN.1 editor framework with support for encoding and decoding various codecs.',
long_description=open('README.md', 'r').read(),
long_description_content_type='text/markdown',
author='Florian Fetz',
author_email='[email protected]',
license='MIT',
classifiers=[
'License :: OSI Approved :: MIT License',
'Programming Language :: Python :: 3',
'Topic :: Software Development'
],
keywords=['ASN.1', 'asn1', 'editor'],
url='https://github.com/futsch1/asn1editor',
packages=find_packages(exclude=['tests', 'example']),
include_package_data=True,
install_requires=[
'asn1tools>=0.153.0',
'wxpython>=4.1.0'
],
test_suite="tests",
python_requires='>=3.6',
entry_points={
'console_scripts': ['asn1editor=asn1editor.__init__:_wx_python_editor']
})