forked from postgrespro/mamonsu
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
30 lines (27 loc) · 792 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
import codecs
import mamonsu
from os import path
from setuptools import setup, find_packages
def long_description():
filespath = path.dirname(path.realpath(__file__))
with codecs.open(path.join(filespath, 'README.rst'), encoding='utf8') as f:
return f.read()
setup(
name='mamonsu',
version=mamonsu.__version__,
packages=find_packages(),
description=mamonsu.__description__,
long_description=long_description(),
classifiers=mamonsu.__classifiers__,
keywords=mamonsu.__keywords__,
author=mamonsu.__author__,
author_email=mamonsu.__author_email__,
url=mamonsu.__url__,
license=mamonsu.__licence__,
entry_points={
'console_scripts': [
'mamonsu=mamonsu.lib.runner:start'
],
},
zip_safe=True,
)