-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathsetup.py
42 lines (39 loc) · 1.39 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
try:
from setuptools import setup, find_packages
except ImportError:
from distutils.core import setup
install_requires: list[str] = [
"setuptools",
"tabulate",
"bidict",
]
"""All required functional dependencies that are installed when running `pip install SAPsim`.
Non-functional (e.g., testing, formatting, documentation) dependencies are listed in requirements.txt."""
setup(
name="SAPsim",
# Check https://pypi.org/project/SAPsim/ for latest version number
version="1.1.1",
description="Simulation of SAP (Simple As Possible) computer programs from COMP 311 (Computer Organization) @ UNC.",
author="Jesse Wei",
author_email="jesse@cs.unc.edu",
url="https://github.com/jesse-wei/SAPsim",
download_url="https://github.com/jesse-wei/SAPsim/releases",
keywords=[
"SAP",
"SAPsim",
"simple as possible",
"UNC",
"COMP311",
],
install_requires=install_requires,
tests_require=install_requires + ["tox", "pytest", "pytest-cov"],
# See https://setuptools.pypa.io/en/latest/userguide/package_discovery.html
packages=find_packages(),
classifiers=[
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Intended Audience :: Developers",
"Operating System :: OS Independent",
"Topic :: Software Development :: Libraries :: Python Modules",
],
)