-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Add readme as long description - Update packages and classifieres, and required python version
- Loading branch information
1 parent
cea8ac7
commit 346cb38
Showing
1 changed file
with
13 additions
and
4 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -4,21 +4,30 @@ | |
# For details on the licensing terms, see the LICENSE file. | ||
# SPDX-License-Identifier: MIT | ||
|
||
from setuptools import setup | ||
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.1", | ||
description="Execution engine for Production Flow Description Language (PFDL) files.", | ||
name="pfdl_scheduler", | ||
version="0.9.0", | ||
description="Parser and Scheduler of Production Flow Description Language (PFDL) files.", | ||
long_description=long_description, | ||
long_description_content_type='text/markdown', | ||
author="Peter Detzner, Maximilian Hoerstrup", | ||
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 | ||
) |