forked from myselfhimself/gmic-sphinx
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
35 lines (30 loc) · 1.09 KB
/
setup.py
File metadata and controls
35 lines (30 loc) · 1.09 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
#!/usr/bin/env python
import os
from setuptools import setup
def read(fname):
""" Reads a file in from disk and returns its contents """
with open(os.path.join(os.path.dirname(__file__), fname), "r") as file_handle:
return file_handle.read()
setup(
name="gmic-sphinx",
version="0.0.4",
author="Jonathan-David Schröder",
author_email="jonathan.schroder@gmail.com",
description=(
"A simple sphinx extension to generate images from G'MIC commands"
),
keywords="sphinx extension gmic image-processing",
url="https://github.com/myselfhimself/gmic-sphinx",
long_description=read("README.md"),
long_description_content_type="text/markdown",
packages=["gmic_sphinx"],
include_package_data=True,
install_requires=["sphinx", "docutils", "gmic"],
classifiers=[
"Development Status :: 2 - Pre-Alpha",
"Intended Audience :: Information Technology",
"License :: OSI Approved :: CEA CNRS Inria Logiciel Libre License, version 2.1 (CeCILL-2.1)",
"Programming Language :: Python",
"Topic :: Utilities",
],
)