-
Notifications
You must be signed in to change notification settings - Fork 17
/
Copy pathsetup.py
38 lines (35 loc) · 1.26 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
from setuptools import setup, find_packages
from beampy import __version__ as beampy_version
with open("README.md", "r") as fh:
long_description = fh.read()
setup(
name="beampy-slideshow",
version=beampy_version,
author="Hugo Chauvet",
author_email="[email protected]",
long_description=long_description,
description="A python tool to create simple HTML5 presentation slideshow",
long_description_content_type="text/markdown",
url="https://github.com/hchauvet/beampy",
packages=find_packages(exclude=['tests', 'examples',
'doc-src', '*.pyc']),
include_package_data=True,
zip_safe=False,
install_requires=[
"beautifulsoup4",
"pillow",
"six",
"lxml",
"bibtexparser"
],
classifiers=[
'Programming Language :: Python :: 2 ',
'Programming Language :: Python :: 3 ',
'Topic :: Multimedia :: Graphics :: Presentation',
'Topic :: Multimedia :: Graphics :: Editors :: Vector-Based ',
'Topic :: Text Processing :: Markup :: LaTeX',
'Topic :: Text Processing :: Markup :: HTML',
'Topic :: Text Processing',
'License :: OSI Approved :: GNU General Public License v3 (GPLv3)'
]
)