-
-
Notifications
You must be signed in to change notification settings - Fork 10
/
setup.py
59 lines (57 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
47
48
49
50
51
52
53
54
55
56
57
58
59
from setuptools import setup, find_packages
setup(
name='lawu',
packages=find_packages(),
version='3.0.0',
python_requires='>=3.7',
description='Doing fun stuff with JVM ClassFiles.',
long_description=open('README.md', 'r').read(),
long_description_content_type='text/markdown',
author='Tyler Kennedy',
author_email='[email protected]',
url='https://lawu.dev',
keywords=[
'java',
'disassembly',
'disassembler',
'assembly'
],
include_package_data=True,
classifiers=[
'Programming Language :: Python',
'License :: OSI Approved :: MIT License',
'Operating System :: OS Independent',
'Development Status :: 3 - Alpha',
'Intended Audience :: Developers',
'Topic :: Software Development :: Disassemblers'
],
tests_require=[
'pytest>=2.10',
'pytest-cov'
],
install_requires=[
'mutf8'
],
extras_require={
'dev': [
'pytest',
'pytest-cov',
'sphinx',
'sphinxcontrib-googleanalytics',
'sphinx-click',
'furo',
'ghp-import',
'pyyaml',
'twine',
'wheel'
],
'cli': [
'click',
'rich'
]
},
entry_points='''
[console_scripts]
lawu=lawu.cli:cli
'''
)