-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
58 lines (56 loc) · 1.77 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
47
48
49
50
51
52
53
54
55
56
57
58
from setuptools import setup, find_packages
setup(
name='orpheuspypractice',
version='0.2.65',
author='JGWill',
author_email='[email protected]',
description='Practice Package to Experiment with Orpheus\'s goals and its submodules',
long_description=open('README.md').read(),
long_description_content_type='text/markdown',
url='https://github.com/jgwill/orpheuspypractice',
packages=find_packages(where='src'),
package_dir={'': 'src'},
install_requires=[
"tlid",
"requests",
"music21",
"ipython",
"jgcmlib>=1.0.59",
"jghfmanager>=0.1.5",
"langchain",
"langchain_openai",
"langchain_community",
"arxiv",
"pyyaml",
"python-dotenv",
"langgraph",
"wikipedia",
"llm",
"pandas",
"numpy",
"langchain-experimental",
"langsmith",
"numexpr",
"strip-tags",
"jaraco.functools",
"jaraco.context",
],
entry_points={
'console_scripts': [
"oabc = orpheuspypractice:jgabcli_main",
"omid2score = orpheuspypractice:jgabcli_main_mid2score",
"osay_hello_orpheuspypractice = orpheuspypractice:say_hello",
"olca = orpheuspypractice.olca:main",
"oiv = orpheuspypractice.oiv:main",
"odep = orpheuspypractice.dependency_action:main",
"ohfi = orpheuspypractice:jgthfcli_main",
"wfohfi_then_oabc_foreach_json_files = orpheuspypractice:wfohfi_then_oabc_foreach_json_files",
]
},
classifiers=[
'Programming Language :: Python :: 3',
'License :: OSI Approved :: MIT License',
'Operating System :: OS Independent',
],
python_requires='>=3.6',
)