-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
26 lines (24 loc) · 821 Bytes
/
setup.py
File metadata and controls
26 lines (24 loc) · 821 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
from setuptools import setup, find_packages
with open('requirements.txt') as i:
install_requires = [x.strip() for x in i.readlines() if x.strip()]
setup(
name = 'sphinx-simpleswitch',
version = '1.0.0',
description = 'Sphinx Extensions for SimpleSwitch',
packages = find_packages(),
data_files=[
('sphinx_tcmodal',
[
'sphinx_tcmodal/assets/tcmodal.js',
'sphinx_tcmodal/assets/tcmodal.css',
]),
('sphinx_userjourney_bar',
[
'sphinx_userjourney_bar/assets/userjourney.css',
'sphinx_userjourney_bar/assets/_images/userjourney-step.png',
'sphinx_userjourney_bar/assets/_images/userjourney-sub.png',
]),
],
include_package_data=True,
install_requires = install_requires,
)