forked from HumanSignal/Adala
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
28 lines (26 loc) · 916 Bytes
/
setup.py
File metadata and controls
28 lines (26 loc) · 916 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
"""This file and its contents are licensed under the Apache License 2.0. Please see the included NOTICE for copyright information and LICENSE for a copy of the license.
"""
import re
import setuptools
# Module dependencies
requirements, dependency_links = [], []
with open('requirements.txt') as f:
for line in f.read().splitlines():
requirements.append(line)
setuptools.setup(
name='adala',
version='0.0.1',
author='Heartex',
author_email="hello@humansignal.com",
description='ADALA: Automated Data Labeling Agent',
url='https://github.com/HumanSignal/ADALA',
packages=setuptools.find_packages(),
include_package_data=True,
classifiers=[
'Programming Language :: Python :: 3',
'License :: OSI Approved :: Apache Software License',
'Operating System :: OS Independent',
],
python_requires='>=3.8',
install_requires=requirements
)