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