forked from italia/docs-italia-theme
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
54 lines (48 loc) · 1.5 KB
/
setup.py
File metadata and controls
54 lines (48 loc) · 1.5 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
49
50
51
52
53
54
# -*- coding: utf-8 -*-
"""Sphinx Team Digitale theme"""
import codecs
import json
from setuptools import setup
package_file = codecs.open('package.json', 'r', 'utf-8')
package_data = json.load(package_file)
setup(
name='docs-italia-theme',
version=package_data['version'],
license=package_data['license'],
author='Team Digitale',
description=__doc__,
long_description=codecs.open('README.md', 'r', 'utf-8').read(),
zip_safe=False,
packages=['docs-italia-theme'],
package_data={'docs-italia-theme': [
'theme.conf',
'*.html',
'static/css/*.css',
'static/icons/*.*',
'static/js/*.js',
'static/*.png',
'static/*.svg',
'static/font/*.*',
'data/*.*',
]},
include_package_data=True,
classifiers=[
'Development Status :: 5 - Production/Stable',
'License :: OSI Approved :: MIT License',
'Environment :: Console',
'Environment :: Web Environment',
'Intended Audience :: Developers',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.3',
'Programming Language :: Python :: 3.4',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
'Operating System :: OS Independent',
'Topic :: Documentation',
'Topic :: Software Development :: Documentation',
],
install_requires=[
'PyYAML==3.12',
]
)