forked from mousepawmedia/omission
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
45 lines (43 loc) · 1.66 KB
/
Copy pathsetup.py
File metadata and controls
45 lines (43 loc) · 1.66 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
39
40
41
42
43
44
45
#!/usr/bin/env python
from setuptools import setup
setup(name='Omission',
version='1.0',
description='A deceptively simple word puzzle.',
author='MousePaw Games',
author_email='info@mousepawgames.com',
url='https://www.mousepawgames.com/omission',
license='BSD-3',
packages=['omission',
'omission.data',
'omission.game',
'omission.interface'],
package_data={'omission': ['resources/audio/*.ogg',
'resources/content/*.txt',
'resources/font/open-dyslexic/*.otf',
'resources/font/orbitron/*.otf',
'resources/font/source-sans-pro/*.otf',
'resources/icons/*.png',
'interface/omission.kv'
]
},
entry_points={'gui_scripts': ['omission = omission.__main__:main']},
setup_requires=[
#'Cython == 0.25.2'
],
install_requires=[
#'Cython == 0.25.2',
'kivy >= 1.10.0',
'appdirs >= 1.4.3'
],
classifiers=[
'Development Status :: 5 - Production/Stable',
'Intended Audience :: End Users/Desktop',
'License :: OSI Approved :: BSD License',
'Natural Language :: English',
'Operating System :: Microsoft :: Windows',
'Operating System :: MacOS :: MacOS X',
'Operating System :: POSIX :: Linux',
'Programming Language :: Python :: 3',
'Topic :: Games/Entertainment :: Puzzle Games'
]
)