-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
39 lines (34 loc) · 1.01 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
#! /usr/bin/env python3
#
# This file is part of ZISA-X
#
# SPDX-FileCopyrightText: 2024 Synthetic Dreams LLC <[email protected]>
#
# SPDX-License-Identifier: GPL-3.0-only
#
import setuptools
with open("README.md", "r") as fh:
long_description = fh.read()
setuptools.setup(
name='zisa-x',
version='1.0.0',
author='Synthetic Dreams LLC',
author_email='[email protected]',
packages=["images"],
package_data={'': ['*']},
scripts=['zisax.py'],
include_package_data=True,
url='http://github.com/ToniWestbrook/zisa-x',
license='LICENSE',
description='ZISA-X Z80 / ISA bus emulator',
long_description=long_description,
long_description_content_type="text/markdown",
classifiers=[
"Programming Language :: Python :: 3",
"License :: OSI Approved :: GNU General Public License v3 (GPLv3)",
"Operating System :: POSIX :: Linux",
],
install_requires=[
'z80 @ git+https://github.com/kosarev/z80.git'
],
)