simplex/setup.py

25 lines
734 B
Python
Raw Normal View History

2019-10-30 18:37:08 +00:00
# -*- encoding: utf-8 -*-
import setuptools
with open('README.md', 'r') as fh:
long_description = fh.read()
setuptools.setup(
name="simplex", # Replace with your own username
version="0.0.1",
author='Mikaël Capelle',
author_email='capelle.mikael@gmail.com',
description='Implementation of a simplex dictionary in python',
long_description=long_description,
long_description_content_type="text/markdown",
url="https://github.com/mikael.capelle/simplex",
packages=setuptools.find_packages(),
classifiers=[
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
],
python_requires='>=3.5',
)