-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
48 lines (42 loc) · 1.06 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
import os
import sys
from setuptools import setup, find_packages
version = '0.0.1'
binary_names = ['activeml']
pkg_name = 'activeml'
root = os.path.abspath(os.path.dirname(__file__))
packages = find_packages(
include=[
pkg_name, "{}.*".format(pkg_name)
]
)
deps = {
'main': [
'file-io>=0.1.15',
'lazyops',
'transformers',
'onnx',
'onnxruntime',
'deepsparse',
]
}
with open(os.path.join(root, 'README.md'), 'rb') as readme:
long_description = readme.read().decode('utf-8')
setup(
name=pkg_name,
version=version,
description=pkg_name,
long_description=long_description,
long_description_content_type="text/markdown",
author='Tri Songz',
author_email='[email protected]',
url=f'http://github.com/GrowthEngineAI/{pkg_name}',
python_requires='>=3.7',
install_requires=deps['main'],
packages=packages,
classifiers=[
"Development Status :: 3 - Alpha",
"Environment :: Console",
"Intended Audience :: Developers",
]
)