roulette/setup.py
2022-11-26 20:41:24 -07:00

23 lines
664 B
Python

from setuptools import setup
from pathlib import Path
# Globals and constants variables.
BASEDIR = Path(__file__).parent.resolve()
with open(BASEDIR.joinpath("README.md"), "r") as fp:
LONG_DESCRIPTION = fp.read()
setup(
name="pyroulette",
version="0.0.1rc0",
description="A package for exploring roulette strategies.",
long_description=LONG_DESCRIPTION,
author="Mathematical Michael",
author_email="consistentbayes@gmail.com",
url="https://github.com/mathematicalmichael/pyroulette",
packages=["pyroulette"],
license="MIT",
install_requires=["dataclasses; python_version<'3.7'"],
python_requires=">=3.6, <4.0",
)