forked from AmanPriyanshu/ProTaska-GPT
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
39 lines (37 loc) · 1.62 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
from setuptools import setup, find_packages
with open("README.md", "r", encoding="utf-8") as fh:
long_description = fh.read()
setup(
name='ProTaska-GPT',
version='0.1.0',
description='Your AI-powered data companion for intelligent tasks, tutorials, and algorithm recommendations.',
long_description=long_description,
long_description_content_type="text/markdown",
author='Aman Priyanshu, Supriti Vijay',
author_email='[email protected], [email protected]',
packages=find_packages(exclude=["notebooks", "docs"]),
url='https://github.com/AmanPriyanshu/protaska-gpt',
install_requires=open('requirements.txt').read().splitlines(),
classifiers=[
'Development Status :: 4 - Beta',
'Intended Audience :: Developers',
'Intended Audience :: Education',
'License :: OSI Approved :: MIT License',
'Natural Language :: English',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3.8',
'Programming Language :: Python :: 3.9',
'Topic :: Education',
'Topic :: Scientific/Engineering :: Artificial Intelligence',
],
keywords='data-companion AI machine-learning data-science tutorials tasks',
project_urls={
'Documentation': 'https://github.com/AmanPriyanshu/protaska-gpt',
'Source': 'https://github.com/AmanPriyanshu/protaska-gpt',
'Bug Tracker': 'https://github.com/AmanPriyanshu/protaska-gpt/issues',
},
license='MIT',
)