quoracle/setup.py
Michael Whittaker cc4af2b7ad Updated setup.py to require >=3.8.
We use some newer features of Python now (e.g., Protocol) so we require
Python 3.8.
2021-04-10 18:30:36 -07:00

27 lines
798 B
Python

import setuptools
with open("README.md", "r", encoding="utf-8") as fh:
long_description = fh.read()
setuptools.setup(
name="quoracle",
version="0.0.3",
author="Michael Whittaker",
author_email="mwhittttaker@gmail.com",
description=("A library for modelling, analyzing, and optimizing quorum " +
"systems"),
long_description=long_description,
long_description_content_type="text/markdown",
url="https://github.com/mwhittaker/quorums",
packages=setuptools.find_packages(),
install_requires =[
"matplotlib",
"pulp",
],
classifiers=[
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
],
python_requires='>=3.8',
)