forked from hwangeug/lutris-bulk-adder
-
Notifications
You must be signed in to change notification settings - Fork 1
/
setup.py
22 lines (21 loc) · 819 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
from distutils.core import setup
setup(
name = 'lutris-bulk-adder',
packages = ['lutris_bulk_adder'],
version = '0.1.5',
license='MIT',
description = 'Python script to bulk import a directory of ROM files into Lutris',
long_description = """
This is a simple Python script to import a directory of ROM files into Lutris.
The directory must contain only games from one platform. I have only tested this
on my own computer for a limited number of platforms.
""",
author = 'Eugene Hwang',
author_email = '[email protected]',
url = 'https://github.com/hwangeug/lutris-bulk-adder',
keywords = ['Lutris', 'ROMs', 'Emulation'],
entry_points = {'console_scripts': ['lutris_bulk_adder=lutris_bulk_adder.lutris_bulk_adder:main']},
install_requires = [
'PyYAML'
]
)