simplex/setup.py

30 lines
891 B
Python
Raw Permalink Normal View History

2019-10-30 18:37:08 +00:00
# -*- encoding: utf-8 -*-
import setuptools
2019-11-28 15:53:00 +00:00
with open("README.md", "r") as fh:
2019-10-30 18:37:08 +00:00
long_description = fh.read()
2019-11-28 15:53:00 +00:00
test_requires = ["pytest", "mypy", "black", "flake8", "flake8-black"]
2019-10-30 18:37:08 +00:00
setuptools.setup(
2021-10-04 09:20:23 +00:00
name="simplex-dictionary",
2019-10-30 18:37:08 +00:00
version="0.0.1",
2019-11-28 15:53:00 +00:00
author="Mikaël Capelle",
author_email="capelle.mikael@gmail.com",
description="Implementation of a simplex dictionary in python",
2019-10-30 18:37:08 +00:00
long_description=long_description,
long_description_content_type="text/markdown",
2019-11-28 15:53:00 +00:00
url="https://gitea.typename.fr/mikael.capelle/simplex",
2019-10-30 18:37:08 +00:00
packages=setuptools.find_packages(),
2021-07-08 13:48:02 +00:00
install_requires=[],
2019-11-28 15:53:00 +00:00
test_requires=test_requires,
extras_require={"test": test_requires},
2019-10-30 18:37:08 +00:00
classifiers=[
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
],
python_requires=">=3.6",
2019-10-30 18:37:08 +00:00
)