-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
33 lines (31 loc) · 938 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
32
33
import setuptools
with open("README.md", "r") as f:
long_description = f.read()
setuptools.setup(
name="sprich",
version="0.1",
author="Lars Martens",
author_email="contact@haselkern.com",
description="A compiler for interactive dialogs.",
long_description=long_description,
long_description_content_type="text/markdown",
url="https://github.com/haselkern/sprich",
packages=setuptools.find_packages(),
install_requires=[
"lark-parser==0.7.1",
],
setup_requires=[
"lark-parser==0.7.1",
],
entry_points={
"console_scripts": ['sprich=sprich.sprich:main'],
},
include_package_data=True,
classifiers=[
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.7",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Development Status :: 4 - Beta",
],
)