-
Notifications
You must be signed in to change notification settings - Fork 1
/
setup.py
29 lines (27 loc) · 836 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
import setuptools
with open('README.md') as f:
longest_description = f.read()
setuptools.setup(
name="NumberScript",
version="1.13.5",
description="possibly the world's most simplest and restricted language.",
author="Sasen Perera",
long_description=longest_description,
long_description_content_type="text/markdown",
packages=["NumberScript"],
github_url="https://github.com/Sas2k/NumberScript",
license="MIT",
classifiers=[
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
],
#adding executable
entry_points={
'console_scripts': [
'NumberScript = NumberScript.main:main',
'nspm = NumberScript.nspm:main'
]
},
python_requires='>=3.6'
)