-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsetup.py
31 lines (27 loc) · 959 Bytes
/
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
import os
from setuptools import find_packages, setup
dpath = os.path.dirname(os.path.realpath(__file__))
with open(os.path.join(dpath, "README.md"), "r") as f:
long_description = f.read()
setup(
name="hera-py",
version="1.0.7",
description=(
"Interpreter for the Haverford Educational RISC Architecture (HERA) "
"assembly language"
),
long_description=long_description,
long_description_content_type="text/markdown",
license="MIT",
author="Ian Fisher",
author_email="[email protected]",
entry_points={"console_scripts": ["hera = hera.main:external_main"]},
packages=find_packages(exclude=["tests"]),
project_urls={"Source": "https://github.com/iafisher/hera-py"},
classifiers=[
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Natural Language :: English",
"Topic :: Software Development :: Assemblers",
],
)