-
Notifications
You must be signed in to change notification settings - Fork 26
/
setup.py
51 lines (50 loc) · 1.56 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
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
from setuptools import setup, find_packages
with open("README.md", "r") as fh:
long_description = fh.read()
setup(
name='ldfparser',
author="Balazs Eszes",
author_email="c4deszes@gmail.com",
description="LDF Language support for Python",
long_description=long_description,
long_description_content_type="text/markdown",
url="https://github.com/c4deszes/ldfparser",
packages=find_packages(exclude=["tests"]),
package_data={'': ['*.lark']},
license='MIT',
keywords=['LIN', 'LDF'],
install_requires=['lark>=1,<2', 'bitstruct', 'jinja2'],
extras_require={
'dev': [
# Packaging
"setuptools",
"wheel",
"twine",
# Testing
"pytest",
"pytest-cov",
"pytest-benchmark",
"jsonschema",
# Linting
"pylint",
"flake8"
]
},
python_requires='!=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*, !=3.5.*, <4',
py_modules=['lin', 'parser'],
entry_points={
'console_scripts': ['ldfparser=ldfparser.cli:main']
},
classifiers=[
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
],
project_urls={
"Documentation": "https://c4deszes.github.io/ldfparser/",
"Source Code": "https://github.com/c4deszes/ldfparser",
}
)