-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathsetup.py
More file actions
20 lines (19 loc) · 723 Bytes
/
setup.py
File metadata and controls
20 lines (19 loc) · 723 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
import setuptools
setuptools.setup(
install_requires=['pyyaml'],
author = 'Caleb Boylan',
name = 'libdolphin',
description = 'Python library for interacting with Dolphin-emu and Super Smash Bros. Melee',
url = 'https://github.com/squidboylan/libdolphin',
version = '0.0.1',
classifiers = [
'License :: OSI Approved :: MIT',
'Operating System :: POSIX :: Linux',
'Programming Language :: Python :: 3',
],
packages=setuptools.find_packages(),
entry_points = {
'console_scripts': ['apt_package_mirror=apt_package_mirror.__main__:main'],
}
)