-
Notifications
You must be signed in to change notification settings - Fork 1
/
setup.py
31 lines (27 loc) · 899 Bytes
/
setup.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
from setuptools import setup, find_packages
def read_requirements(file):
with open(file, "r") as f:
return f.read().splitlines()
setup(
name="gbopyrator",
version="0.5",
packages=find_packages(),
entry_points={
"console_scripts": [
"gbopyrator = gbopyrator.gbopyrator:main",
],
},
package_data={"gbopyrator": ["gb_gbc_roms_info.json"]},
install_requires=read_requirements("requirements.txt"),
classifiers=[
"Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
],
python_requires=">=3.7",
url="https://github.com/N0ciple/gbopyrator",
)