-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathsetup.py
More file actions
22 lines (20 loc) · 820 Bytes
/
setup.py
File metadata and controls
22 lines (20 loc) · 820 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
from setuptools import setup
def readme():
with open('README.rst') as f:
return f.read()
setup(name='pynoter',
version='0.1.7',
description='Powerpoint presentations into org or tex files',
long_description='Allows users to convert powerpoint presentations into raw text for editing in latex or org-mode',
classifiers=['Programming Language :: Python :: 2.7', 'Topic :: Text Processing :: Markup :: LaTeX'],
url='https://github.com/maxrousseau/pynoter',
author='Maxime Rousseau',
author_email='maximerousseau08@gmail.com',
test_suite='nose.collector',
tests_require=['nose'],
scripts=['bin/py-noter'],
include_package_data=True,
license='MIT',
packages=['pynoter'],
install_requires=['python-pptx'],
zip_safe=False)