-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathsetup.py
53 lines (50 loc) · 1.71 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
51
52
53
# -*- coding: utf-8 -*-
import glob
from setuptools import setup, find_packages
requires = ['docutils']
setup(
name='bootstrap-rst',
version='0.1',
url='https://github.com/rougier/bootstrap-rst',
# # PyPI url
# download_url='',
license='MIT',
author='Nicolas P. Rougier',
author_email='[email protected]',
description='Generates (X)HTML bootstrap-ready documents from standalone reStructuredText sources.',
long_description="\n%s" % open('README.rst').read(),
zip_safe=False,
classifiers=[
# 'Development Status :: 4 - Beta',
'Development Status :: 2 - Pre-Alpha',
'Environment :: Console',
'Environment :: Web Environment',
'Intended Audience :: Developers',
'License :: OSI Approved :: MIT License',
'Operating System :: OS Independent',
'Programming Language :: Python',
# 'Framework :: Sphinx :: Extension',
#'Framework :: Sphinx :: Theme',
'Topic :: Documentation',
'Topic :: Utilities',
],
platforms='any',
# packages=find_packages(),
packages=['doc', 'bootstrap'],
# package_dir={"": "src"},
py_modules=['bootstrap', 'directives', 'roles'],
include_package_data=True,
install_requires=requires,
# namespace_packages=['sphinxcontrib'],
# install_requires=['docutils'],
entry_points={
'console_scripts': [
'bootstrap-rst = bootstrap:main',
'rst2bootstrap3 = bootstrap:traditional_main',
'rst2bootstrap4 = bootstrap:traditional_main',
'rst2bootstrap-carousel = bootstrap:traditional_main'
]},
data_files=[
('', glob.glob('*.css')),
('', glob.glob('*.tmpl'))],
)