forked from rentouch/cefkivy
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
executable file
·32 lines (22 loc) · 899 Bytes
/
setup.py
File metadata and controls
executable file
·32 lines (22 loc) · 899 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 python
# -*- coding: UTF-8 -*-
#===============================================================================
# Written by Rentouch 2013 - http://www.rentouch.ch
#===============================================================================
from setuptools import setup
from pip.req import parse_requirements
install_reqs = parse_requirements("requirements.txt")
reqs = [str(ir.req) for ir in install_reqs]
# -----------------------------------------------------------------------------
import cefkivy
# setup
setup(name='cefkivy',
version=cefkivy.__version__,
author='Rentouch GmbH',
author_email='info@rentouch.ch',
url='http://www.rentouch.ch',
package_data={'cefkivy': ['images/*.png', '*.kv']},
packages=['cefkivy', ],
install_requires=reqs
)
# -----------------------------------------------------------------------------