24 lines
715 B
Python
24 lines
715 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.1rc1",
|
|
description="A package for exploring roulette strategies.",
|
|
long_description=LONG_DESCRIPTION,
|
|
long_description_content_type='text/markdown',
|
|
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",
|
|
)
|