-
Notifications
You must be signed in to change notification settings - Fork 1
/
setup.py
29 lines (26 loc) · 838 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
26
27
28
29
import os, shutil
from setuptools import setup
with open('README.md') as f:
description = f.read()
with open('LICENSE.md') as f:
license = f.read()
setup(
name = "openautomata",
version = "0.1",
author = "Miguel Flores",
author_email = "[email protected]",
description = ("Python automata theory library."),
long_description = description,
license = license,
keywords = "automata automaton grammar turing dfa nfa context sensitive free",
url = "https://github.com/miguelfrde/openautomata",
packages = ['openautomata', ],
classifiers = [
"Development Status :: 3 - Alpha",
"Topic :: Software Development :: Libraries",
"License :: OSI Approved :: MIT License",
],
)
shutil.rmtree("dist/")
shutil.rmtree("build/")
shutil.rmtree("openautomata.egg-info/")