-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
executable file
·50 lines (46 loc) · 1.38 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
39
40
41
42
43
44
45
46
47
48
49
50
#!/usr/bin/env python3
# -*- coding: utf-8 -*-
"""setuptools based setup module"""
from setuptools import setup
long_description = open('README.md').read()
setup(
name='proxyprinter',
version='0.4.0-a29',
description='Generate card game mockups from .ods spreadsheets',
long_description=long_description,
long_description_content_type="text/markdown",
url='https://github.com/mduo13/proxyprinter',
author='Rome Reginelli',
author_email='[email protected]',
license='MIT',
classifiers=[
'Development Status :: 4 - Beta',
'Environment :: Console',
'Intended Audience :: End Users/Desktop',
'License :: OSI Approved :: GNU General Public License v3 (GPLv3)',
'Operating System :: POSIX',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.11',
'Topic :: Utilities',
'Topic :: Games/Entertainment :: Board Games',
],
keywords='games mockups proxying design',
packages=[
'proxyprinter',
],
entry_points={
'console_scripts': [
'proxyprinter = proxyprinter.proxyprinter:main',
],
'gui_scripts': [
'proxyprintergui = proxyprinter.gui:main',
]
},
install_requires=[
'pyexcel-ods3',
],
package_data={
'': ["proxyprinter.css"],
'': ["zipcode.html"],
}
)