-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
31 lines (29 loc) · 805 Bytes
/
setup.py
File metadata and controls
31 lines (29 loc) · 805 Bytes
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
VERSION = "0.0.5"
requirements = [
"tkintermapview==1.15",
"pillow==9.2.0",
]
setup(
name="cc2me",
version=VERSION,
description="Carrier Command 2 Mission Editor",
author="Ian Norton",
author_email="inorton@gmail.com",
url="https://gitlab.com/inorton/cc2me",
platforms=["any"],
license="License :: OSI Approved :: MIT License",
long_description="Edit Carrier Command 2 save files",
install_requires=requirements,
packages=find_packages(where="."),
package_dir={"": "."},
package_data={"cc2me": ["ui/icons/*.png"]},
entry_points={
"gui_scripts": [
"cc2me = cc2me.ui.tool:run"
],
"console_scripts": [
"cc2mec = cc2me.ui.tool:run"
]
},
)