-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
38 lines (35 loc) · 1.63 KB
/
setup.py
File metadata and controls
38 lines (35 loc) · 1.63 KB
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 os
import setuptools
if 1: # with open(f'{os.path.dirname(os.path.abspath(__file__))}/requirements.txt') as requirements:
with open(f'{os.path.dirname(os.path.abspath(__file__))}/README.md') as readme:
setuptools.setup(
name='reasm',
version='0.1.0',
description='Binary tools for various formats (e.g. MZ)',
long_description=readme.read(),
long_description_content_type='text/markdown',
author='Vladimir Chebotarev',
author_email='vladimir.chebotarev@gmail.com',
license='MIT',
classifiers=[
'Development Status :: 5 - Production/Stable',
'Environment :: Console',
'Intended Audience :: Developers',
'License :: OSI Approved :: MIT License',
'Operating System :: OS Independent',
'Programming Language :: Python :: 3 :: Only',
'Topic :: Software Development',
'Topic :: Utilities',
],
keywords=['mz', 'executable', 'dos', 'reverse-engineering'],
project_urls={
'Documentation': 'https://github.com/excitoon/reasm/blob/master/README.md',
'Source': 'https://github.com/excitoon/reasm',
'Tracker': 'https://github.com/excitoon/reasm/issues',
},
url='https://github.com/excitoon/reasm',
packages=['reasm'],
package_dir={'reasm': ''},
scripts=['mzinfo', 'mzinfo.cmd', 'mzfix', 'mzfix.cmd'],
install_requires=[], # requirements.read().splitlines(),
)