forked from Pythagora-io/gpt-pilot
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
26 lines (23 loc) · 838 Bytes
/
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
from setuptools import setup
VERSION = "0.1.12"
requirements = open("requirements.txt").readlines()
if __name__ == "__main__":
setup(
name='gpt-pilot',
version=VERSION,
packages=['pilot'],
url='https://www.pythagora.ai',
license='MIT',
author_email='[email protected]',
description='GPT Pilot - an AI developer that works with you to build complex projects',
long_description=open('README.md').read(),
long_description_content_type='text/markdown',
classifiers=[
'Development Status :: 3 - Alpha',
'Intended Audience :: Developers',
'License :: OSI Approved :: MIT License',
'Programming Language :: Python :: 3',
],
install_requires=requirements,
python_requires='>=3.9',
)