-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathsetup.py
More file actions
28 lines (23 loc) · 822 Bytes
/
Copy pathsetup.py
File metadata and controls
28 lines (23 loc) · 822 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
28
import pathlib
from setuptools import setup, find_packages
here = pathlib.Path(__file__).parent.resolve()
# Get the long description from the README file
long_description = (here / "README.md").read_text(encoding="utf-8")
# Load requirements.
with open("requirements.txt") as f:
required = f.read().splitlines()
setup(
name="bluff",
version="1.0.2",
description="Bluff is a pythonic poker framework",
long_description=long_description,
long_description_content_type="text/markdown",
url="https://github.com/matheusccouto/bluff",
author="Matheus Couto",
author_email="matheusccouto@gmail.com",
keywords="poker",
packages=["bluff", "bluff.holdem", "bluff.holdem", "bluff.chinese"],
python_requires=">=3.6",
install_requires=required,
include_package_data=True,
)