forked from alexprengere/FormalSystems
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
34 lines (32 loc) · 876 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
#!/usr/bin/python
# -*- coding: utf-8 -*-
from setuptools import setup
setup(
name='FormalSystems',
version='0.1.2',
description='Play with formal systems from "Gödel Escher Bach", Douglas Hofstadter',
author='Alex Prengère',
author_email='[email protected]',
url='http://alexprengere.github.com/FormalSystems',
packages=[
'formalsystems',
],
py_modules=[
'FormalSystemsMain'
],
install_requires=[
'lepl',
'pyyaml'
],
entry_points={
'console_scripts': [
'FormalSystems = FormalSystemsMain:main',
]
},
# We do not export YAML definitions with sources when installing
#package_data={'formalsystems': ['example_definitions/*.yaml']},
#package_dir={'mypkg': 'src/mypkg'},
#data_files=[
# ('/etc/init.d', ['init-script'])
#]
)