15 lines
300 B
Python
15 lines
300 B
Python
"""Setup config"""
|
|
|
|
from setuptools import setup
|
|
|
|
# with open("requirements.txt", encoding="UTF-8") as f:
|
|
# install_requires = f.read().splitlines()
|
|
|
|
setup(
|
|
name="extract-romset",
|
|
version="1.0",
|
|
# install_requires=install_requires,
|
|
scripts=[
|
|
"extract_romset.py",
|
|
],
|
|
)
|