forked from vslutov/turingmarkov
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
35 lines (30 loc) · 1.26 KB
/
Copy pathsetup.py
File metadata and controls
35 lines (30 loc) · 1.26 KB
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
# -*- coding: utf-8 -*-
"""Turing machine and markov algorithm emulator.
Algorithm are compiling to python code or executing.
Read the doc: <https://github.com/vslutov/turingmarkov>
"""
from setuptools import setup, find_packages
VERSION = "0.1.4" # Don't forget fix in __main__.py
setup(name='turingmarkov',
version=VERSION,
description=__doc__,
maintainer='vslutov',
maintainer_email='vslutov@yandex.ru',
url='https://github.com/vslutov/turingmarkov',
license='WTFPL',
platforms=['any'],
classifiers=["Development Status :: 3 - Alpha",
"Environment :: Console",
"Intended Audience :: Education",
"Natural Language :: Russian",
"Natural Language :: English",
"Operating System :: Unix",
"Operating System :: Microsoft :: Windows",
"Programming Language :: Python :: 3 :: Only",
"Topic :: Education",
"Topic :: Utilities",
"Topic :: Scientific/Engineering"],
install_requires=['pytest'],
packages=find_packages(),
include_package_data=True,
entry_points={'console_scripts': ['turingmarkov = turingmarkov.__main__:exec_main']})