-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathsetup.py
72 lines (64 loc) · 2.49 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
70
71
72
# -*- coding: utf-8 -*-
"""Setup module."""
try:
from setuptools import setup
except ImportError:
from distutils.core import setup
MINIMAL_DESCRIPTION = '''
Penney's game, named after its inventor Walter Penney, is a binary (head/tail) sequence generating game between two or more players.
Player A selects a sequence of heads and tails (of length 3 or larger), and shows this sequence to player B. Player B then
selects another sequence of heads and tails of the same length. Subsequently, a fair coin is tossed until either player A's
or player B's sequence appears as a consecutive subsequence of the coin toss outcomes. The player whose sequence appears first wins.
'''
def get_requires():
"""Read requirements.txt."""
requirements = open("requirements.txt", "r").read()
return list(filter(lambda x: x != "", requirements.split()))
def read_description():
"""Read README.md and CHANGELOG.md."""
try:
with open("README.md") as r:
description = "\n"
description += r.read()
with open("CHANGELOG.md") as c:
description += "\n"
description += c.read()
return description
except Exception:
return MINIMAL_DESCRIPTION
setup(
name='penney',
packages=['penney'],
version='0.4',
description="Penney's game",
long_description=read_description(),
long_description_content_type='text/markdown',
author='Sepand Haghighi',
author_email='sepand@pycm.ir',
url='https://github.com/sepandhaghighi/penney',
keywords="penney probability game",
project_urls={
'Source': 'https://github.com/sepandhaghighi/penney',
'Tracker': 'https://github.com/sepandhaghighi/penney/issues',
},
install_requires=get_requires(),
python_requires='>=3.5',
classifiers=[
'Development Status :: 5 - Production/Stable',
'Intended Audience :: Developers',
'Intended Audience :: Education',
'Intended Audience :: End Users/Desktop',
'Natural Language :: English',
'License :: OSI Approved :: MIT License',
'Operating System :: OS Independent',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3.8',
'Programming Language :: Python :: 3.9',
'Topic :: Games/Entertainment',
'Topic :: Games/Entertainment :: Simulation',
],
license='MIT',
include_package_data=True
)