-
Notifications
You must be signed in to change notification settings - Fork 4
/
setup.py
64 lines (59 loc) · 1.88 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
56
57
58
59
60
61
62
63
64
__version__ = '1.1.0.dev0'
import os
import sys
from setuptools import setup, find_packages
if sys.version_info[:2] < (3, 4):
raise RuntimeError('k0dasm requires Python 3.4 or later')
DESC = "Renesas (NEC) 78K0 disassembler"
here = os.path.abspath(os.path.dirname(__file__))
try:
LONG_DESC = open(os.path.join(here, 'README.rst')).read()
except:
LONG_DESC = DESC
CLASSIFIERS = [
'Development Status :: 3 - Alpha',
'Environment :: Console',
'Intended Audience :: Developers',
'Natural Language :: English',
'Operating System :: POSIX',
'Programming Language :: Python',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.4',
'Programming Language :: Python :: 3.5',
'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',
'Programming Language :: Assembly',
'Topic :: Software Development :: Disassemblers',
'Topic :: Software Development :: Embedded Systems',
'Topic :: System :: Hardware'
]
setup(
name='k0dasm',
version=__version__,
license='License :: OSI Approved :: BSD License',
url='https://github.com/mnaberez/k0dasm',
description=DESC,
long_description=LONG_DESC,
classifiers=CLASSIFIERS,
author="Mike Naberezny",
author_email="mike@naberezny.com",
maintainer="Mike Naberezny",
maintainer_email="mike@naberezny.com",
packages=find_packages(),
install_requires=[],
extras_require={},
tests_require=[],
include_package_data=True,
zip_safe=False,
test_suite="k0dasm.tests",
entry_points={
'console_scripts': [
'k0dasm = k0dasm.command:main',
],
},
)