-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathsetup.py
50 lines (46 loc) · 1.34 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
46
47
48
49
50
# -*- coding: utf-8 -*-
"""`anarchytools` lives on `Github`_.
.. _github: https://github.com/AnarchyTools/anarchy_sphinx
"""
from setuptools import setup
from anarchy_theme import __version__
setup(
name='anarchy_sphinx',
version=__version__,
url='https://github.com/AnarchyTools/anarchy_sphinx',
license='BSD',
author='Johannes Schriewer',
author_email='hallo@dunkelstern.de',
description='AnarchyTools Theme and Swift support for Sphinx.',
long_description=open('README.rst').read(),
zip_safe=False,
packages=['anarchy_theme', 'swift_domain'],
package_data={
'anarchy_theme': [
'theme.conf',
'*.html',
'static/css/*.css'
]
},
entry_points={
'console_scripts': [
'anarchysphinx=swift_domain.bootstrap:main',
],
},
include_package_data=True,
classifiers=[
'Development Status :: 4 - Beta',
'License :: OSI Approved :: BSD License',
'Environment :: Console',
'Environment :: Web Environment',
'Intended Audience :: Developers',
'Programming Language :: Python :: 3',
'Operating System :: OS Independent',
'Topic :: Documentation',
'Topic :: Software Development :: Documentation',
],
install_requires=[
'fuzzywuzzy',
'sphinx'
]
)