-
Notifications
You must be signed in to change notification settings - Fork 18
/
Copy pathsetup.py
36 lines (34 loc) · 1.14 KB
/
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
34
35
36
from setuptools import setup, find_packages
with open('README.md') as f:
long_description = f.read()
setup(
name='slr-parser',
version='0.7.0',
author='Vipul Gharde',
authon_email='vipul.gharde@gmail.com',
description='Implementation of Simple LR (SLR) Parser for educational purposes.',
long_description=long_description,
long_description_content_type='text/markdown',
url='https://github.com/Vipul97/slr-parser',
packages=find_packages(),
install_requires=['graphviz'],
classifiers=[
'Intended Audience :: Developers',
'Intended Audience :: Science/Research',
'License :: OSI Approved :: MIT License',
'Operating System :: MacOS',
'Operating System :: Microsoft :: Windows',
'Operating System :: POSIX',
'Operating System :: Unix',
'Programming Language :: Python',
'Programming Language :: Python :: 3.12',
'Topic :: Scientific/Engineering',
'Topic :: Software Development'
],
python_requires='>=3.12',
entry_points={
'console_scripts': [
'slr=slr_parser.slr_parser:main',
],
},
)