summaryrefslogtreecommitdiff
path: root/sandbox/rst2beamer/setup.py
blob: fdb912edabe8bd20fe5cad89f7154666a2e1d31d (plain)
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
from setuptools import setup, find_packages
import sys, os

from rst2beamer import __version__

setup(
	name='rst2beamer',
	version=__version__,
	description="A docutils writer and script for converting restructured text to the Beamer presentation format",
	long_description=open("README.txt").read() + "\n" +
		open(os.path.join("docs", "HISTORY.txt")).read(),
	classifiers=[
		'Development Status :: 5 - Production/Stable',
		'License :: OSI Approved :: GNU General Public License (GPL)',
		'Programming Language :: Python',
		'Topic :: Text Processing :: Markup',
		'Topic :: Utilities',
		'Topic :: Multimedia :: Graphics :: Presentation',
	],
	keywords='presentation docutils rst restructured-text',
	author='Ryan Krauss & Paul-Michael Agapow',
	author_email='ryanwkrauss@gmail.com, agapow@bbsrc.ac.uk',
	url='http://www.agapow.net/software/rst2beamer',
	license='GPL',
	#packages=find_packages(exclude=['ez_setup', 'examples', 'tests']),
	py_modules=['rst2beamer'],
	#include_package_data=True,
	zip_safe=False,
	install_requires=[
		'docutils',
	],
	entry_points={
		'console_scripts': [
			'rst2beamer = rst2beamer:main',
		],
	},
)