-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
34 lines (18 loc) · 885 Bytes
/
setup.py
File metadata and controls
34 lines (18 loc) · 885 Bytes
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
from setuptools import setup, find_packages
setup( name='aifactory_alpha',
version='1.2.6',
description='alpha version of AI Factory client api package',
author='yoosunyoung',
author_email='luysunyoung@aifactory.page',
url='https://www.aifactory.space',
license='MIT',
py_modules=['API', 'FileUtilities', 'Authentification', 'constants', 'greetings', 'submit'],
python_requires='>=3.0',
install_requires=['pycryptodomex', 'requests', 'pandas'],
package_dir={'': "src/"},
packages=find_packages('src'),
scripts=['bin/aifactory-submit', 'bin/aifactory-leader-board', 'bin/aifactory-request-key'],
include_package_data=True,
package_data={'submission': ['formats/training_recipe_format.json'],
'ascii_arts': ['ascii_arts/AI_Factory']}
)