-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
43 lines (41 loc) · 1.67 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, find_packages
# Read the contents of your README file
with open("README.md", "r", encoding="utf-8") as fh:
long_description = fh.read()
setup(
name='aisort',
version='0.1.4', # Update this with every release
packages=find_packages(),
include_package_data=True,
package_data={
'aisort': ['data/*.txt'],
},
long_description=long_description,
long_description_content_type="text/markdown",
install_requires=[
'openai', # Add any other dependencies required
],
python_requires='>=3.6', # Assuming your package is compatible with Python 3.6 and above
entry_points={
'console_scripts': [
'aisort=aisort.main:main', # Update the path to your main script
],
},
author='Christopher Ek',
author_email='chr.oak@icloud.com',
description='AiSort is a Python-based utility designed to intelligently organize files using the OpenAI ChatGPT API.',
license='MIT',
keywords='ai sorter',
url='https://github.com/chroakPRO/Desktop-Cleaner/tree/ai-integration', # Your project's main homepage
download_url='https://github.com/chroakPRO/Desktop-Cleaner/archive/refs/heads/ai-integration.zip', # Link to a specific release
classifiers=[
'Development Status :: 3 - Alpha', # Update as per your development status
'Intended Audience :: Developers',
'License :: OSI Approved :: MIT License',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3.8',
'Programming Language :: Python :: 3.9',
],
)