Skip to content

Commit

Permalink
Create setup.py
Browse files Browse the repository at this point in the history
  • Loading branch information
gustawlippa committed Jan 31, 2021
1 parent 2bf1191 commit cca488f
Showing 1 changed file with 32 additions and 0 deletions.
32 changes: 32 additions & 0 deletions setup.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,32 @@
import setuptools

with open("README.md", "r", encoding="utf-8") as fh:
long_description = fh.read()

setuptools.setup(
name="qfa",
version="0.1.0",
author="Gustaw Lippa",
author_email="[email protected]",
description="Quantum Finite Automata simulators",
long_description=long_description,
long_description_content_type="text/markdown",
url="https://github.com/gustawlippa/qfa",
packages=setuptools.find_packages(include=["QFA", "QFA.*"]),
classifiers=[
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
],
install_requires=[
'cycler',
'kiwisolver',
'matplotlib',
'numpy',
'pyparsing',
'python-dateutil',
'scipy',
'six',
],
python_requires='>=3.6',
)

0 comments on commit cca488f

Please sign in to comment.