2019-05-20 09:31:50 +00:00
|
|
|
#!/usr/bin/env python3
|
|
|
|
"""Setup."""
|
|
|
|
import setuptools
|
|
|
|
|
|
|
|
|
|
|
|
def _readme():
|
|
|
|
with open('README.md', 'r') as file:
|
|
|
|
return file.read()
|
|
|
|
|
|
|
|
|
|
|
|
setuptools.setup(
|
|
|
|
name='pdflayers',
|
2019-05-20 18:17:51 +00:00
|
|
|
version='0.1.1',
|
2019-05-20 09:31:50 +00:00
|
|
|
author='Simon Segerblom Rex',
|
|
|
|
description='PDF layer handling.',
|
|
|
|
long_description=_readme(),
|
|
|
|
long_description_content_type='text/markdown',
|
|
|
|
url='https://github.com/SimonSegerblomRex/pdflayers',
|
|
|
|
license='MIT',
|
|
|
|
packages=setuptools.find_packages(),
|
|
|
|
entry_points={
|
|
|
|
'console_scripts': [
|
|
|
|
'pdflayers = pdflayers.__main__:main',
|
|
|
|
],
|
|
|
|
},
|
|
|
|
python_requires='>=3.5',
|
|
|
|
install_requires=[
|
|
|
|
'pikepdf',
|
|
|
|
],
|
|
|
|
classifiers=[
|
|
|
|
'Python :: 3'
|
|
|
|
],
|
|
|
|
)
|