-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsetup.py
48 lines (46 loc) · 1.48 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
from setuptools import setup, find_packages
with open('README.md', 'r') as file:
long_description = file.read()
setup(
name='connor_nlp',
version='1.0.0',
py_modules=['run'],
packages=find_packages(include=['connor', 'cli', 'gui', 'connor.*', 'cli.*', 'gui.*'],
exclude=['connor/data', 'connor/static', 'connor/static/icons',
'connor/fonts', 'connor/tmp']),
include_package_data=True,
package_data={
'connor': ['data/*', 'static/*', 'static/icons/*','fonts/*', 'tmp/*'],
},
install_requires=[
"docx==0.2.4",
"python_pptx==1.0.2",
"python_docx==0.8.11",
"nltk==3.9.1",
"numpy==2.1.3",
"odfpy==1.4.1",
"openpyxl==3.1.5",
"PyPDF2==3.0.1",
"PyQt6==6.7.1",
"scikit_learn==1.5.2",
"sentence_transformers==3.3.1",
],
entry_points={
'console_scripts': [
'connor=run:main',
],
},
author='Ycatsh',
description='Fast and fully local NLP file organizer that organizes files based on their content.',
long_description=long_description,
long_description_content_type='text/markdown',
url='https://github.com/ycatsh/connor',
license='MIT',
license_file='LICENSE',
classifiers=[
'Programming Language :: Python :: 3',
'License :: OSI Approved :: MIT License',
'Operating System :: OS Independent',
],
python_requires='>=3.10'
)