-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
34 lines (33 loc) · 1.32 KB
/
setup.py
File metadata and controls
34 lines (33 loc) · 1.32 KB
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
from setuptools import setup, find_packages
setup(name='articleHeaderPage',
version='0.1',
description='Creation of header page for scientific article with pdf',
long_description="""Article Header Page creates a header page and insert
it in front of PDF documents that contains scientific articles.""",
classifiers=[
'Development Status :: 0.1',
'License :: GPL-3.0',
'Programming Language :: Python :: 3.7',
# 'Topic :: Image processing :: Matplotlib',
],
keywords='PDF header-page article',
python_requires='>=3.6',
url='https://github.com/grumpfou/ArticleHeaderPage',
author='Renaud Dessalles',
author_email='see on my website',
license='GPL-3.0',
packages=find_packages(),
# package_data = {'RFigure':['images/*.png']},
install_requires=["pyqt5",'bibtexparser','fpdf'],
include_package_data=True,
# scripts=['bin/articleHeaderPage'],
# data_files = [("config",['RFigure/RFigureConfig/RFigureHeader.py']),
# ("bitmaps",['RFigure/RFigureConfig/RFigureHeader.py',
# ])
# ],
entry_points = {
'console_scripts': [
'articleHeaderPage = articleHeaderPage:main',
]
},
zip_safe=False)