forked from steynvl/inferrer
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
25 lines (24 loc) · 844 Bytes
/
setup.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
#!/usr/bin/env python3
# -*- coding: utf-8 -*-
from setuptools import setup, find_packages
from pathlib import Path
setup(
name="inferrer",
description="An automata learning library written in Python.",
version="0.1.0",
author="Steyn van Litsenborgh",
url="https://github.com/steynvl/inferrer",
long_description=Path("README.md").read_text(),
long_description_content_type='text/markdown',
keywords='automata-learning, python',
packages=find_packages(include="inferrer*"),
classifiers=[
'Development Status :: 2 - Pre-Alpha',
'Intended Audience :: Developers',
'Natural Language :: English',
'OSI Approved :: GNU General Public License v3 (GPLv3)',
'Programming Language :: Python :: 3.7',
],
install_requires=["graphviz"],
python_requires='>=3.7',
)