mirror of
https://github.com/Llewellynvdm/pdflayers.git
synced 2024-11-16 01:07:08 +00:00
34 lines
720 B
Python
34 lines
720 B
Python
|
#!/usr/bin/env python3
|
||
|
"""Setup."""
|
||
|
import setuptools
|
||
|
|
||
|
|
||
|
def _readme():
|
||
|
with open('README.md', 'r') as file:
|
||
|
return file.read()
|
||
|
|
||
|
|
||
|
setuptools.setup(
|
||
|
name='pdflayers',
|
||
|
version='0.1.0',
|
||
|
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'
|
||
|
],
|
||
|
)
|