-
Notifications
You must be signed in to change notification settings - Fork 11
Expand file tree
/
Copy pathsetup.py
More file actions
24 lines (22 loc) · 785 Bytes
/
setup.py
File metadata and controls
24 lines (22 loc) · 785 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
from setuptools import setup, find_packages
setup(
name='pythonwarrior',
version='0.0.8',
packages=find_packages(),
package_data={'pythonwarrior': ['templates/README']},
scripts=['bin/pythonwarrior'],
author="Richard Lee",
author_email="rblee88@gmail.com",
description=("Game written in Python for learning Python and AI - "
"a Python port of ruby-warrior"),
long_description=open('README.rst').read(),
install_requires=['jinja2'],
license="MIT",
url="https://github.com/arbylee/python-warrior",
keywords="python ruby warrior rubywarrior pythonwarrior",
classifiers=[
"Programming Language :: Python",
"License :: OSI Approved :: MIT License",
"Development Status :: 3 - Alpha"
]
)