-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
47 lines (42 loc) · 1.34 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
#!/usr/bin/env python
from pathlib import Path
from setuptools import find_packages, setup
here = Path(__file__).resolve().parent
VERSION = (here / 'VERSION').read_text().strip()
setup(
name='wordmaze',
version=VERSION,
description="Words and textboxes made amazing",
long_description=Path(here, 'README.md').read_text(),
long_description_content_type="text/markdown",
license='MIT',
author='elint-tech',
author_email='[email protected]',
url='https://github.com/elint-tech/wordmaze/',
download_url=f'https://github.com/elint-tech/wordmaze/dist/wordmaze-{VERSION}.tar.gz',
install_requires=Path(here, 'requirements.txt').read_text().splitlines(),
packages=find_packages(),
keywords=[
'wordmaze',
'ocr',
'pdf',
'word',
'words',
'text',
'textbox',
'textboxes',
'text-mining',
'text-mining-analysis',
],
classifiers=[
'Development Status :: 4 - Beta',
'License :: OSI Approved :: MIT License',
'Intended Audience :: Developers',
'Topic :: Software Development',
'Topic :: Utilities',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3.8',
'Operating System :: OS Independent',
],
)