forked from op1hacks/op1repacker
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
33 lines (29 loc) · 788 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
32
33
#!/usr/bin/env python3
import re
from setuptools import setup
version = re.search(
"^__version__\s*=\s*'([^']*)'",
open("op1repacker/main.py").read(),
re.M
).group(1)
files = [
"assets/display/*.svg",
"assets/display/*.json",
"assets/presets/*/*.aif",
]
setup(name="op1repacker",
version=version,
description="Tool for unpacking, modding and repacking OP-1 firmware.",
author="Richard Lewis",
author_email="[email protected]",
url="https://github.com/op1hacks/op1repacker/",
packages=["op1repacker"],
package_data={"": files},
install_requires=[
"svg.path",
],
entry_points={
"console_scripts": ["op1repacker=op1repacker.main:main"]
},
classifiers=[]
)