-
Notifications
You must be signed in to change notification settings - Fork 6
/
setup.py
45 lines (43 loc) · 1.59 KB
/
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
39
40
41
42
43
44
45
# -*- coding: utf-8 -*-
from os.path import dirname, join
from setuptools import setup
setup(
author = "Ruslan Korniichuk",
author_email = "[email protected]",
classifiers = [
"Development Status :: 5 - Production/Stable",
"Environment :: Console",
"Framework :: Sphinx",
"Framework :: Sphinx :: Extension",
"Intended Audience :: Developers",
"Intended Audience :: Information Technology",
"Intended Audience :: Science/Research",
"License :: Public Domain",
"Operating System :: POSIX :: Linux",
"Programming Language :: Python",
"Programming Language :: Python :: 2",
"Programming Language :: Python :: 2.7",
"Programming Language :: Python :: 2 :: Only",
"Topic :: Documentation",
"Topic :: Documentation :: Sphinx",
"Topic :: Scientific/Engineering"
],
description = ("The Sphinx extension "
"embedding a Sage cell into a webpage"),
download_url = ("https://github.com/korniichuk/sphinx-sagecell-ext/"
"archive/0.1.zip"),
include_package_data = True,
install_requires = [
"Sphinx"
],
keywords = ["extension", "python2", "sagecell", "sphinx",
"sphinx-sagecell-ext"],
license = "Public Domain",
long_description = open(join(dirname(__file__), "README.rst")).read(),
name = "sphinx-sagecell-ext",
packages = ["sphinx-sagecell-ext"],
platforms = ["Linux"],
url = "https://github.com/korniichuk/sphinx-sagecell-ext",
version = "0.1rc4",
zip_safe = True
)