eaapi/setup.py

8 lines
151 B
Python
Raw Permalink Normal View History

2022-02-03 21:55:07 +01:00
from distutils.core import setup
setup(
name="eaapi",
packages=["eaapi"],
2022-02-04 02:09:08 +01:00
install_requires=open("requirements.txt").read().split("\n"),
2022-02-03 21:55:07 +01:00
)