-
Notifications
You must be signed in to change notification settings - Fork 44
/
Copy pathsetup.py
executable file
·40 lines (35 loc) · 1.33 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
#!/usr/bin/python
from opcodes import __version__, __author__, __email__
from setuptools import setup
def read_text_file(path):
import os
with open(os.path.join(os.path.dirname(__file__), path)) as f:
return f.read()
setup(
name="opcodes",
version=__version__,
description="Database of Processor Instructions/Opcodes",
long_description=read_text_file("README.md"),
long_description_content_type='text/markdown',
author=__author__,
author_email=__email__,
url="https://github.com/Maratyszcza/Opcodes",
packages=["opcodes"],
package_data={"opcodes": ["x86.xml", "x86_64.xml", "k1om.xml"]},
keywords=["assembly", "assembler", "asm", "opcodes", "x86", "x86-64", "isa", "cpu"],
install_requires=["setuptools"],
requires=[],
classifiers=[
"Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"Intended Audience :: Science/Research",
"License :: OSI Approved :: BSD License",
"Operating System :: OS Independent",
"Programming Language :: Assembly",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Topic :: Scientific/Engineering",
"Topic :: Software Development",
"Topic :: Software Development :: Assemblers",
"Topic :: Software Development :: Documentation"
])