updates setup.py to bring dungonsheets deps into site-packages

This commit is contained in:
mat
2021-07-22 14:52:05 +01:00
parent e758ab6a15
commit 8db45f1651
+44 -31
View File
@@ -8,41 +8,54 @@ def read(fname):
return open(os.path.join(os.path.dirname(__file__), fname)).read() return open(os.path.join(os.path.dirname(__file__), fname)).read()
setup(name='dungeonsheets', setup(
version=read('VERSION'), name="dungeonsheets",
description='Dungeons and Dragons 5e Character Tools', version=read("VERSION"),
long_description=read('README.rst'), description="Dungeons and Dragons 5e Character Tools",
long_description_content_type='text/x-rst', long_description=read("README.rst"),
keywords='D&D character sheets', long_description_content_type="text/x-rst",
author='Mark Wolfman', keywords="D&D character sheets",
author_email='canismarko@gmail.com', author="Mark Wolfman",
license='GPLv3', author_email="canismarko@gmail.com",
url='https://github.com/canismarko/dungeon-sheets', license="GPLv3",
download_url = 'https://github.com/canismarko/dungeon-sheets/archive/master.zip', url="https://github.com/canismarko/dungeon-sheets",
download_url="https://github.com/canismarko/dungeon-sheets/archive/master.zip",
packages=find_packages(), packages=find_packages(),
package_data={ package_data={
'dungeonsheets': ['forms/*pdf', 'forms/*.tex', 'forms/*.txt', "dungeonsheets": [
'../VERSION'] "forms/*pdf",
}, "forms/*.tex",
install_requires=[ "forms/*.txt",
'fdfgen', 'npyscreen', 'jinja2', 'pdfrw', 'sphinx', "modules/DND-5e-LaTeX-Template/*",
'EbookLib', 'reportlab', "modules/DND-5e-LaTeX-Template/lib/*",
], "modules/DND-5e-LaTeX-Template/img/*",
entry_points={ "../VERSION",
'console_scripts': [
'makesheets = dungeonsheets.make_sheets:main',
'create-character = dungeonsheets.create_character:main',
] ]
}, },
python_requires='>=3.6', install_requires=[
"fdfgen",
"npyscreen",
"jinja2",
"pdfrw",
"sphinx",
"EbookLib",
"reportlab",
],
entry_points={
"console_scripts": [
"makesheets = dungeonsheets.make_sheets:main",
"create-character = dungeonsheets.create_character:main",
]
},
python_requires=">=3.6",
classifiers=[ classifiers=[
'Development Status :: 3 - Alpha', "Development Status :: 3 - Alpha",
'Environment :: Console', "Environment :: Console",
'License :: OSI Approved :: GNU General Public License v3 or later (GPLv3+)', "License :: OSI Approved :: GNU General Public License v3 or later (GPLv3+)",
'Natural Language :: English', "Natural Language :: English",
'Programming Language :: Python :: 3.6', "Programming Language :: Python :: 3.6",
'Programming Language :: Python :: 3.7', "Programming Language :: Python :: 3.7",
'Programming Language :: Python :: 3.8', "Programming Language :: Python :: 3.8",
'Topic :: Games/Entertainment :: Role-Playing', "Topic :: Games/Entertainment :: Role-Playing",
], ],
) )