-
Notifications
You must be signed in to change notification settings - Fork 35
/
setup.py
45 lines (39 loc) · 1.07 KB
/
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
37
38
39
40
41
42
43
44
45
#!/usr/bin/python
# -*- coding: utf-8 -*-
from __future__ import with_statement
from setuptools import setup
with open('README.rst') as f:
LONG_DESCRIPTION = f.read()
with open('LICENSE') as f:
LICENSE = f.read()
setup(
name='FormalSystems',
version='0.1.3',
author='Alex Prengère',
author_email='alexprengere@gmail.com',
url='http://alexprengere.github.com/FormalSystems',
description='Play with formal systems from "Gödel Escher Bach", Douglas Hofstadter',
long_description=LONG_DESCRIPTION,
license=LICENSE,
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'])
# ]
)