-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
30 lines (27 loc) · 951 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
from setuptools import setup
from jasminesnake import __version__
with open("README.md", "r") as fh:
long_description = fh.read()
with open("requirements.txt") as f:
requirements = f.readlines()
setup(
name="jasminesnake",
version=__version__,
packages=["jasminesnake"],
url="https://github.com/t1meshift/js",
license="MIT",
author="Yury Kurlykov",
author_email="sh1ftr@protonmail.ch",
description="Another JavaScript interpreter written in Python",
long_description=long_description,
long_description_content_type="text/markdown",
classifiers=[
"Programming Language :: Python :: 3",
# "Programming Language :: JavaScript",
"License :: OSI Approved :: MIT License",
"Development Status :: 2 - Pre-Alpha",
],
python_requires=">=3.8",
install_requires=requirements,
entry_points={"console_scripts": ["jasminesnake = jasminesnake.__main__:main"]},
)