-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
38 lines (35 loc) · 1.29 KB
/
setup.py
File metadata and controls
38 lines (35 loc) · 1.29 KB
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
34
35
36
37
38
import os
import sys
sys.path.insert(0, os.path.abspath('lib'))
from setuptools import setup, find_packages
with open('README.md') as f:
long_description = f.read()
setup(
name = "lamemaker",
version = '0.1.0',
author = "LameStation",
author_email = "contact@lamestation.com",
description = "Play LameStation games on your desktop!",
long_description = long_description,
license = "GPLv3",
url = "https://github.com/lamestation/lamemaker",
keywords = "emulator game converter lamestation desktop python spin",
entry_points = {
'console_scripts': [
'lamemaker = lamemaker.__main__:cli'
]
},
package_dir={'':'lib'},
packages=find_packages('lib'),
include_package_data=True,
classifiers=[
"Environment :: Console",
"Development Status :: 2 - Pre-Alpha",
"Topic :: Games/Entertainment",
"Topic :: System :: Emulators",
"Topic :: Software Development :: Pre-processors",
"Topic :: Multimedia :: Graphics :: Viewers",
"License :: OSI Approved :: GNU General Public License v3 (GPLv3)",
"Programming Language :: Python :: 3 :: Only",
]
)