/
githubmirror
/
gpt-pilot
Обзор
Документация
Войти
/
githubmirror
/
gpt-pilot
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
0.1.2
setup.py
26 строк
837 B
LeonOstrez
update version to 0.1.2
07 мар 2024, 08:28
07 мар 2024, 08:28
6743d5f
Код
Авторство
О чём код?
from setuptools import setup VERSION = "0.1.2" 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='info@pythagora.ai', 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', )