eaapi/setup.py

8 lines
151 B
Python
Raw Permalink Normal View History

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