-
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.
Update setup.py to allow for packaging of the project and update README accordingly. --------- Co-authored-by: Marius Brehler <[email protected]>
- Loading branch information
1 parent
7dbaae0
commit a8d9393
Showing
3 changed files
with
23 additions
and
8 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 |
---|---|---|
|
@@ -20,6 +20,7 @@ share/python-wheels/ | |
.installed.cfg | ||
*.egg | ||
MANIFEST | ||
.venv | ||
|
||
*.manifest | ||
*.spec | ||
|
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
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.", | ||
author="Peter Detzner, Maximilian Hoerstrup", | ||
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 | ||
) |