-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsetup.py
69 lines (65 loc) · 2.01 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
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
#!/usr/bin/env python
# coding=utf-8
"""
Set elzzur package up.
"""
from setuptools import setup, Extension
__author__ = "Alberto Pettarin"
__copyright__ = "Copyright 2016, Alberto Pettarin (www.albertopettarin.it)"
__license__ = "MIT"
__version__ = "0.0.1"
__email__ = "[email protected]"
__status__ = "Production"
setup(
name="elzzur",
packages=["elzzur"],
package_data={"elzzur": ["res/*"]},
version="0.0.1.0",
description="elzzur solves a Ruzzle board, listing all the valid words with their scores.",
author="Alberto Pettarin",
author_email="[email protected]",
url="https://github.com/pettarin/elzzur",
license="MIT License",
long_description=open("README.rst", "r").read(),
install_requires=["marisa-trie>=0.7.2"],
scripts=["bin/elzzur"],
keywords=[
"elzzur",
"Ruzzle",
"Ramble",
"Scrabble",
"Scarabeo",
"Paroliere",
"Snake",
"board",
"snake",
"snakes",
"solve",
"solver",
"MARISA",
"trie",
"prefix tree"
],
classifiers=[
"Development Status :: 5 - Production/Stable",
"Environment :: Console",
"Intended Audience :: Developers",
"Intended Audience :: End Users/Desktop",
"License :: OSI Approved :: MIT License",
"Natural Language :: English",
"Operating System :: MacOS :: MacOS X",
"Operating System :: Microsoft :: Windows",
"Operating System :: POSIX :: Linux",
"Programming Language :: Python",
"Programming Language :: Python :: 2",
"Programming Language :: Python :: 2.7",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.4",
"Programming Language :: Python :: 3.5",
"Topic :: Games/Entertainment",
"Topic :: Games/Entertainment :: Board Games",
"Topic :: Games/Entertainment :: Puzzle Games",
"Topic :: Desktop Environment",
"Topic :: Utilities"
],
)