-
-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathsetup.py
40 lines (37 loc) · 1.37 KB
/
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
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
from setuptools import find_packages, setup
# read the contents of the README file
from os import path
thisDirectory = path.abspath(path.dirname(__file__))
with open(path.join(thisDirectory, "README.md"), encoding="utf-8") as f:
longDescription = f.read()
setup(
name="automathon",
packages=find_packages(
include=[
"automathon",
"automathon.finite_automata",
"automathon.errors",
]
),
include_package_data=True,
version="{{VERSION_PLACEHOLDER}}",
description="A Python library for simulating and visualizing finite automata",
long_description=longDescription,
long_description_content_type="text/markdown",
author="Robin Hafid Quintero Lopez",
license="MIT",
install_requires=["graphviz==0.16"],
tests_require=["graphviz==0.16"],
test_suite="tests",
author_email="rohaquinlop301@gmail.com",
url="https://github.com/rohaquinlop/automathon",
download_url="https://github.com/rohaquinlop/automathon/archive/refs/tags/{{VERSION_PLACEHOLDER}}.tar.gz",
keywords=["python", "automata", "automata", "automathon"],
classifiers=[
"Development Status :: 3 - Alpha",
"Intended Audience :: Developers",
"Topic :: Software Development :: Build Tools",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3",
],
)