-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
38 lines (36 loc) · 1.12 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
from setuptools import setup
# TODO: addd a makefile to compile our own qt5-webkit lib
# see aur package qt5-webkit-print for options andd build
setup(
name="libriis",
version="0.1",
author = "Bachir Soussi Chiadmi",
author_email = "[email protected]",
packages=[
'libriis',
'libriis.classes',
],
scripts = [
'bin/libriis',
],
include_package_data=True,
package_data={
# If any package contains *.txt or *.rst files, include them:
'': ['*.png', '*.html', '*.zip', '*.scss', '*.js', '*.md'],
'': ['libriis.assets','libriis.assets.images'],
'': [
'libriis.templates',
'libriis.templates.newproject',
'libriis.templates.newproject..config',
'libriis.templates.newproject.assets',
'libriis.templates.newproject.assets.css',
'libriis.templates.newproject.assets.images',
'libriis.templates.newproject.assets.js',
'libriis.templates.newproject.assets.lib',
'libriis.templates.newproject.contents'
]
},
install_requires=[
'pyphen','pyScss',
],
)