-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
31 lines (29 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 setuptools
with open("README.md", "r", encoding="utf-8") as fh:
long_description = fh.read()
setuptools.setup(
name="scierra",
version="0.6.1",
author="PerceptronV",
author_email="[email protected]",
description="A Simulated C++ Interpreter",
long_description=long_description,
long_description_content_type="text/markdown",
url="https://github.com/PerceptronV/scierra",
packages=setuptools.find_packages(),
entry_points={
'console_scripts':[
'scierra = scierra.scierra:main'
]
},
classifiers=[
"Programming Language :: Python :: 3",
"Intended Audience :: Developers",
"Operating System :: OS Independent",
"License :: OSI Approved :: Apache Software License",
"Topic :: Software Development :: Interpreters",
"Development Status :: 4 - Beta",
"Natural Language :: English"
],
python_requires='>=3.3',
)