-
Notifications
You must be signed in to change notification settings - Fork 2
/
setup.py
38 lines (33 loc) · 846 Bytes
/
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
import os
import codecs
from setuptools import setup
def read(fp):
here = os.path.abspath(os.path.dirname(__file__))
with codecs.open(os.path.join(here, fp), "r") as f:
return f.read()
exec(read(os.path.join("qtgallery", "_version.py")))
setup(
name="qtgallery",
version=__version__,
description="sphinx-gallery scraper for Qt examples and tutorials",
long_description=read("README.rst"),
author="Kenneth Lyons",
author_email="ixjlyons@gmail.com",
license="MIT",
packages=["qtgallery"],
install_requires=[
"qtpy",
"pyvirtualdisplay",
"sphinx_gallery",
"sphinx",
],
extras_require={
"docs": [
"sphinx",
"sphinx_rtd_theme",
"pyqtgraph",
"pyopengl",
"matplotlib",
],
},
)