-
Notifications
You must be signed in to change notification settings - Fork 1
/
setup.py
executable file
·33 lines (31 loc) · 1.14 KB
/
setup.py
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
#!/usr/bin/env python3
# coding: UTF-8
#
# Copyright © 2012, Elizabeth J. Myers, et al. All rights reserved.
# License terms can be found in the LICENSE file at the top level of the source
# tree.
from setuptools import setup, find_packages
setup(name='inhumane',
description='A game engine for the popular card game, Cards Against Humanity',
author='Elizabeth Myers',
author_email='[email protected]',
url='http://code.foxkit.us/Elizacat/inhumane',
license='BSD',
version='0.1a0',
keywords=['cards against humanity', 'game', 'game engine'],
packages=find_packages(),
package_data = {
'inhumane': ['packs/*/*.txt'],
},
include_package_data=True,
classifiers=[
'Development Status :: 3 - Alpha',
'Intended Audience :: Developers',
'License :: Public Domain',
'Operating System :: OS Independent',
'Programming Language :: Python :: 3',
'Topic :: Games/Entertainment',
'Topic :: Games/Entertainment :: Turn Based Strategy',
'Topic :: Software Development :: Libraries :: Python Modules',
]
)