-
Notifications
You must be signed in to change notification settings - Fork 2
/
setup.py
33 lines (31 loc) · 1.05 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
# Copyright The PFDL Contributors
#
# Licensed under the MIT License.
# For details on the licensing terms, see the LICENSE file.
# SPDX-License-Identifier: MIT
from setuptools import setup, find_packages
from pathlib import Path
this_directory = Path(__file__).parent
long_description = (this_directory / "README.md").read_text()
setup(
name="pfdl_scheduler",
version="0.9.0",
description="Parser and Scheduler for Production Flow Description Language (PFDL) files.",
long_description=long_description,
long_description_content_type='text/markdown',
author="The PFDL Contributors",
author_email="[email protected]",
python_requires = ">=3.10",
packages=find_packages(),
classifiers=[
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3 :: Only",
"Operating System :: OS Independent",
],
install_requires=[
"antlr4-python3-runtime==4.9.3",
"antlr-denter",
"snakes",
"requests",
], # external packages as dependencies
)