-
Notifications
You must be signed in to change notification settings - Fork 7
/
setup.py
59 lines (51 loc) · 1.32 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 __future__ import with_statement
from setuptools import setup
def get_version():
from aheui import version
return version.VERSION
def get_readme():
try:
with open('README.md') as f:
return f.read().strip()
except IOError:
return ''
tests_require = [
'ruff', 'tox', 'pytest>=3.0.1', 'pytest-mock'
]
setup(
name='aheui',
version=get_version(),
description='Aheui compiler & assembler toolkit.',
long_description=get_readme(),
long_description_content_type='text/markdown',
author='Jeong YunWon',
author_email='[email protected]',
url='https://github.com/aheui/rpaheui',
packages=[
'aheui',
'aheui/int',
],
package_data={
'aheui': ['version.py']
},
install_requires=[
],
tests_require=tests_require,
extras_require={
'tests': tests_require,
},
scripts=[
'bin/aheui-py',
'bin/aheui',
'bin/ahsembler',
],
classifiers=[
'Intended Audience :: Developers',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Programming Language :: Python :: 2',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.12',
],
)