mirror of
https://github.com/Garmelon/PFERD.git
synced 2023-12-21 10:23:01 +01:00
18 lines
385 B
Python
18 lines
385 B
Python
from setuptools import find_packages, setup
|
|
|
|
setup(
|
|
name="PFERD",
|
|
version="2.4.5",
|
|
packages=find_packages(),
|
|
install_requires=[
|
|
"requests>=2.21.0",
|
|
"beautifulsoup4>=4.7.1",
|
|
"rich>=2.1.0",
|
|
"keyring>=21.5.0"
|
|
],
|
|
)
|
|
|
|
# When updating the version, also:
|
|
# - update the README.md installation instructions
|
|
# - set a tag on the update commit
|