forked from manatools/python-manatools
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathsetup.py
More file actions
31 lines (27 loc) · 697 Bytes
/
setup.py
File metadata and controls
31 lines (27 loc) · 697 Bytes
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
#!/usr/bin/env python3
from setuptools import setup
exec(open('manatools/version.py').read())
try:
import yui
except ImportError:
import sys
print('Please install python3-yui in order to install this package',
file=sys.stderr)
sys.exit(1)
setup(
name=__project_name__,
version=__project_version__,
author='Angelo Naselli',
author_email='anaselli@linux.it',
packages=['manatools', 'manatools.ui'],
#scripts=['scripts/'],
license='LGPLv2+',
description='Python ManaTools framework.',
long_description=open('README.md').read(),
#data_files=[('conf/manatools', ['XXX.yy',]), ],
install_requires=[
"dbus-python",
"python-gettext",
"PyYAML",
],
)