8
8
9
9
setup (
10
10
name = "Pytomatas" ,
11
- version = "1.1.1" ,
11
+ version = "1.1.2" ,
12
+ packages = ["Pytomatas" ] or find_packages ("src" ),
13
+ package_dir = {"" : "src" },
12
14
author = "arhcoder" ,
13
15
author_email = "arhcoder@gmail.com" ,
14
16
description = "Simulates Automatons Acceptors DFA, NFA, PDA and Turing Machines" ,
15
17
long_description = long_description ,
16
18
long_description_content_type = "text/markdown" ,
17
19
url = "https://github.com/arhcoder/Pytomatas" ,
18
20
license = "MIT License" ,
19
- packages = find_packages (),
20
21
include_package_data = True ,
21
22
project_urls = {
22
23
"Bug Tracker" : "https://github.com/arhcoder/Pytomatas/issues" ,
23
- "Contribution" : "https://github.com/arhcoder/Pytomatas/pulls" ,
24
- "Author" : "https://github.com/arhcoder"
24
+ "Author" : "https://github.com/arhcoder" ,
25
+ "Source" : "https://github.com/arhcoder/Pytomatas" ,
26
+ "Contribution" : "https://github.com/arhcoder/Pytomatas/pulls"
25
27
},
28
+ keywords = [
29
+ "Automata" , "Automaton" , "Turing Machine" , "Simulation" ,
30
+ "DFA" , "NFA" , "PDA" , "TM" , "Python"
31
+ ],
26
32
classifiers = [
27
33
"Programming Language :: Python :: 3" ,
28
34
"License :: OSI Approved :: MIT License" ,
29
35
"Operating System :: OS Independent"
30
36
],
31
- package_dir = {"" : "src" },
32
37
python_requires = ">=3.6"
33
38
)
0 commit comments