forked from truenicoco/deuces
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
27 lines (24 loc) · 692 Bytes
/
setup.py
File metadata and controls
27 lines (24 loc) · 692 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
25
26
27
"""
Deuces: A pure Python poker hand evaluation library
"""
from setuptools import setup
with open("README.md", encoding="utf-8") as fp:
long_description = fp.read()
setup(
name="deuces",
version="0.1",
description=__doc__,
long_description=long_description,
author="Will Drevo",
url="https://github.com/worldveil/deuces",
license="MIT",
packages=["deuces"],
classifiers=[
"Development Status :: 3 - Alpha",
"Intended Audience :: Developers",
"Intended Audience :: Education",
"Intended Audience :: Science/Research",
"License :: OSI Approved :: MIT License",
"Topic :: Games/Entertainment",
],
)