mirror of
https://github.com/kennethreitz-archive/adventure.git
synced 2026-06-05 23:40:17 +00:00
28 lines
939 B
Python
28 lines
939 B
Python
import os
|
|
from distutils.core import setup
|
|
|
|
README_PATH = os.path.join(os.path.dirname(__file__), 'adventure', 'README.txt')
|
|
with open(README_PATH) as f:
|
|
README_TEXT = f.read()
|
|
|
|
setup(
|
|
name='adventure',
|
|
version='1.1',
|
|
description='Colossal Cave adventure game at the Python prompt',
|
|
long_description=README_TEXT,
|
|
author='Brandon Craig Rhodes',
|
|
author_email='brandon@rhodesmill.org',
|
|
url='https://bitbucket.org/brandon/adventure/overview',
|
|
packages=['adventure', 'adventure/tests'],
|
|
package_data={'adventure': ['README.txt', '*.dat', 'tests/*.txt']},
|
|
classifiers=[
|
|
'Development Status :: 6 - Mature',
|
|
'Environment :: Console',
|
|
'Intended Audience :: End Users/Desktop',
|
|
'License :: OSI Approved :: BSD License',
|
|
'Programming Language :: Python :: 3',
|
|
'Programming Language :: Python :: 3.2',
|
|
'Topic :: Games/Entertainment',
|
|
],
|
|
)
|