-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
41 lines (39 loc) · 1.5 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
from setuptools import setup, find_packages
with open("README.md", encoding="utf-8") as f:
README = f.read()
setup(
name="ai4free",
version="0.7",
description="collection of free AI provides",
long_description=README,
long_description_content_type="text/markdown",
author="OEvortex",
author_email="[email protected]", # Specify the email for the first author
packages=find_packages(),
classifiers=[
'Development Status :: 5 - Production/Stable',
'Intended Audience :: Developers',
'License :: Other/Proprietary License',
'Operating System :: OS Independent',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.8',
'Programming Language :: Python :: 3.9',
'Programming Language :: Python :: 3.10',
'Programming Language :: Python :: 3.11',
'Programming Language :: Python :: 3.12',
'Programming Language :: Python :: Implementation :: CPython',
'Topic :: Internet :: WWW/HTTP :: Indexing/Search',
'Topic :: Software Development :: Libraries :: Python Modules',
],
install_requires=[
"tls_client",
"webscout",
],
license='HelpingAI Simplified Universal License',
project_urls={
'Source': 'https://github.com/Devs-Do-Code/ai4free',
'Tracker': 'https://github.com/Devs-Do-Code/ai4free/issues',
'YouTube': 'https://youtube.com/@OEvortex',
'Youtube': 'https://www.youtube.com/@DevsDoCode'
},
)