-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
42 lines (38 loc) · 1020 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
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
from setuptools import find_packages, setup
setup(
name='spaces_stub',
version=f'0.0.1',
url='https://github.com/fmtr/spaces-stub',
license='Copyright © 2022 Frontmatter. All rights reserved.',
author='Frontmatter',
author_email='[email protected]',
description='Stub for hosting on Spaces',
packages=find_packages(),
package_data={},
install_requires=[],
extras_require={
'numerics': [
'fmtr.tools[logging,profiling,parallel]',
'dask[bag,distributed]',
'datasets',
'emoji-country-flag',
'faker',
'forex_python',
'gradio',
'loguru',
'names-generator',
'num2words',
'openpyxl',
'pandas',
'pycountry',
'sre_yield',
'torch',
'transformers[torch]',
'wandb',
'bokeh',
'contexttimer',
'xyzservices',
]
,
},
)