-
Notifications
You must be signed in to change notification settings - Fork 5
/
setup.py
43 lines (42 loc) · 1.46 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
from setuptools import setup
with open("README.md", "r") as f:
long_description = f.read()
from achoz.global_var import __version__ , __program__
setup(
name=__program__,
version=__version__,
python_requires=">=3.8",
description='Search through all your documents like web',
long_description=long_description,
long_description_content_type="text/markdown",
author='Krishna Kanhaiya < kcubeterm >',
author_email='[email protected]',
packages=['achoz'],
license="AGPL-3",
include_package_data = True,
package_data = {
'' : ['*.png'],
'' : ['*.html'],
'' : ['*.css'],
'' : ['*.js']
},
entry_points = {
'console_scripts': ['achoz=achoz.cli:cli'],
},
install_requires=["meilisearch>=0.18.3","pyramid>=2.0","pyinotify>=0.9.6","requests>=2.22.0","schedule>=1.1.0","textract>=1.6.5"],
classifiers=[
"Environment :: Console",
"Environment :: Web Environment",
"Development Status :: 4 - Beta",
"Intended Audience :: End Users/Desktop",
"Intended Audience :: Developers",
"Intended Audience :: Education",
"Intended Audience :: Information Technology",
"Intended Audience :: System Administrators",
"License :: OSI Approved :: GNU Affero General Public License v3 or later (AGPLv3+)",
"Operating System :: Unix",
"Operating System :: POSIX :: Linux",
"Topic :: Text Processing",
"Topic :: Text Processing :: Indexing"
]
)