Skip to content

Commit

Permalink
Update setup.py
Browse files Browse the repository at this point in the history
- Add readme as long description
- Update packages and classifieres, and required python version
  • Loading branch information
maxhoerstr committed Jun 11, 2024
1 parent cea8ac7 commit 346cb38
Showing 1 changed file with 13 additions and 4 deletions.
17 changes: 13 additions & 4 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -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
)

0 comments on commit 346cb38

Please sign in to comment.