-
Notifications
You must be signed in to change notification settings - Fork 1
/
setup.py
37 lines (32 loc) · 987 Bytes
/
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
from setuptools import setup, find_packages
from codecs import open
with open('README.md') as f:
readme = f.read()
with open('LICENSE') as f:
my_license = f.read()
with open('requirements.txt') as f:
required = f.read().splitlines()
setup(
name='TextAdventure',
version='1.0.0',
description='A simple game to discover Python language',
long_description=readme,
url='https://github.com/ThT12/TextAdventure',
author='Romain ThT12 Bourget',
author_email='[email protected]',
license=my_license,
classifiers=[
'Development Status :: 4 - Beta',
'Intended Audience :: Beginner',
'Topic :: Discovery',
'Programming Language :: Python :: 3.6',
],
keywords='discover python language',
packages=find_packages(exclude=['tests']),
install_requires=required,
entry_points={
'console_scripts': [
'play_text_adventure=textadventure.adventure:main',
],
},
)