forked from sphinx-contrib/emojicodes
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
40 lines (37 loc) · 1.03 KB
/
setup.py
File metadata and controls
40 lines (37 loc) · 1.03 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
"""
Setup module.
"""
from setuptools import setup
from sphinxemoji import __version__
setup(
name='sphinxemoji',
version=__version__,
description='An extension to use emoji codes in your Sphinx documentation',
long_description="""TODO""",
url='https://github.com/sphinx-contrib/emojicodes',
author='Miguel Sánchez de León Peque',
author_email='peque@neosit.es',
license='BSD License',
classifiers=[
'Development Status :: 4 - Beta',
'Intended Audience :: Developers',
'Topic :: Documentation',
'Topic :: Software Development',
'Topic :: Utilities',
'License :: OSI Approved :: BSD License',
'Operating System :: OS Independent',
'Programming Language :: Python :: 3',
'Framework :: Sphinx :: Extension',
],
packages=['sphinxemoji'],
package_data={
'sphinxemoji': [
'codes.json',
'twemoji.css',
'twemoji.js',
],
},
install_requires=[
'sphinx>=1.8',
],
)