-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
setup.py
executable file
·36 lines (34 loc) · 1.13 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
import setuptools
with open('README.md', 'r') as readme_file:
readme = readme_file.read()
setuptools.setup(
name='exhibiter',
version='1.1.0',
description='a tool to organize evidence for litigation',
author='Simon Raindrum Sherred',
author_email='simonraindrum@gmail.com',
license="Non-Eviction",
long_description=readme,
long_description_content_type="text/markdown",
url='https://github.com/raindrum/exhibiter',
packages=setuptools.find_packages(),
entry_points={
'console_scripts': ["exhibiter-cli = exhibiter.cli:cli"],
'gui_scripts': ["exhibiter = exhibiter.gui:gui"]},
include_package_data=True,
install_requires=[
'pdfrw',
'pillow',
'reportlab',
'python-docx',
'PySide2'],
classifiers=[
'License :: Free To Use But Restricted',
'Development Status :: 4 - Beta',
'Intended Audience :: Legal Industry',
'Programming Language :: Python :: 3.8',
'Environment :: Console',
'Environment :: Other Environment',
'Operating System :: OS Independent'],
python_require='>=3.8',
)