forked from PathagarBooks/pathagar
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
44 lines (41 loc) · 1.39 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
39
40
41
42
43
#!/usr/bin/env python
from distutils.core import setup
# all the specifics are selected in setup.cfg
setup(name='pathagar',
version='0.8.0',
url='https://github.com/PathagarBooks/pathagar',
packages = ['pathagar',
'pathagar.books',
'pathagar.books.management',
'pathagar.books.management.commands'
],
package_dir = {'pathagar':'.'},
package_data = {'pathagar':[
'static/images/*',
'static/js/*',
'static/style/*.css',
'static/style/blueprint/*.css',
# 'static/style/blueprint/plugins/rtl/*.txt',
# 'static/style/blueprint/plugins/rtl/*.css',
'static/style/blueprint/plugins/rtl/*.txt',
'static/style/blueprint/plugins/link-icons/*.{txt,css}',
'static/style/blueprint/plugins/link-icons/*.txt',
'static/style/blueprint/plugins/link-icons/icons/*',
'static/style/blueprint/plugins/fancy-type/*',
'static/style/blueprint/plugins/buttons/*.txt',
'static/style/blueprint/plugins/buttons/*.css',
'static/style/blueprint/plugins/buttons/icons/*',
'templates/*.html',
'templates/registration/*',
'templates/admin/*',
'templates/books/*',
'AUTHORS',
'COPYING',
'README.mkd',
'requirements.pip',
'settings.*',
'setup.*',
'books/fixtures/*',
'books/templates/*',
]}
)