-
Notifications
You must be signed in to change notification settings - Fork 2
/
setup.py
37 lines (30 loc) · 1 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
#!/usr/bin/env python
import os
import os.path
from setuptools import setup
base_path = os.path.dirname(os.path.abspath(__file__))
with open(os.path.join(base_path, 'README.rst')) as f:
with open(os.path.join(base_path, 'CHANGES.rst')) as g:
long_description = '{0}\n{1}'.format(f.read(), g.read())
setup(name='mirte',
version='0.1.9.dev0',
description='Runtime module framework',
long_description=long_description,
author='Bas Westerbaan',
author_email='bas@westerbaan.name',
url='http://github.com/bwesterb/mirte/',
packages=['mirte'],
zip_safe=False,
package_dir={'mirte': 'src'},
install_requires=['docutils>=0.3',
'pyyaml>=3.00',
'msgpack-python>=0.1.0',
'sarah>=0.1.2',
'six >=1.2'],
entry_points={
'console_scripts': [
'mirte = mirte.main:main',
]
},
)
# vim: et:sta:bs=2:sw=4: