-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathsetup.py
More file actions
48 lines (38 loc) · 1.18 KB
/
setup.py
File metadata and controls
48 lines (38 loc) · 1.18 KB
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
44
45
46
47
48
from pathlib import Path
from setuptools import setup, find_packages
here = Path(__file__).parent
# Get the long description from the README file
with (here / 'README.rst').open() as f:
long_description = f.read()
setup(
name='qabel-web-theme',
use_scm_version=True,
setup_requires=['setuptools_scm'],
description='Theme for Qabel microservices',
long_description=long_description,
url='https://github.com/Qabel/qabel-web-theme',
author='Qabel GmbH',
license='QaPL',
# See https://pypi.python.org/pypi?%3Aaction=list_classifiers
classifiers=[
'Development Status :: 3 - Alpha',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.5',
],
packages=find_packages('src'),
package_dir={'': 'src'},
package_data={
'qabel_web_theme': [
'templates/*.html',
'templates/*.txt',
'templates/admin/*.html',
'locale/*/LC_MESSAGES/*',
'static/favicon.ico',
'static/css/*.css',
'static/img/*.png',
'static/js/*.js',
'static/fonts/*',
'static/fonts/ssp/*',
],
},
)