-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
46 lines (43 loc) · 1.3 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
44
45
46
from pathlib import Path
from setuptools import setup
this_directory: Path = Path(__file__).parent
long_description: str = (this_directory / "README.md").read_text()
setup(
name='autocode-py',
version='0.0.1.post10',
author='muazhari',
url='https://github.com/muazhari/autocode',
description='autocode: Auto Code Improvement by Metrics Optimization.',
long_description=long_description,
long_description_content_type='text/markdown',
packages=['autocode'],
classifiers=[
'Intended Audience :: Developers',
'Operating System :: POSIX :: Linux',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.10',
'Programming Language :: Python :: 3.11',
'Programming Language :: Python :: 3.12',
'Topic :: Software Development',
'Topic :: Scientific/Engineering',
],
install_requires=[
'pymoo@git+https://github.com/anyoptimization/pymoo@main',
'pydantic_settings',
'fastapi',
'pandas',
'dependency-injector',
'ray',
'fastapi',
'matplotlib',
'sqlmodel',
'dill',
'streamlit',
'numpy',
'python-on-whales',
'uvicorn',
'langchain',
'langchain-openai',
'langgraph',
],
)