forked from caleb531/automata
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
36 lines (31 loc) · 891 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
30
31
32
33
34
35
36
#!/usr/bin/env python
"""Setup logic for pip."""
from setuptools import setup
def get_long_description():
"""Get long description used on PyPI project page."""
try:
# Use pandoc to create reStructuredText README if possible
import pypandoc
return pypandoc.convert('README.md', 'rst')
except:
return None
setup(
name='automata-lib',
version='1.0.0r3',
description='A Python library for simulating automata and Turing machines',
long_description=get_long_description(),
url='https://github.com/caleb531/automata',
author='Caleb Evans',
author_email='caleb@calebevans.me',
license='MIT',
keywords='automata turing machine',
packages=[
'automata',
'automata.fa',
'automata.pda',
'automata.shared',
'automata.tm'
],
install_requires=[],
entry_points={}
)