-
Notifications
You must be signed in to change notification settings - Fork 12
/
setup.py
53 lines (49 loc) · 1.58 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
from setuptools import setup, find_packages
with open("README.md", "r") as fh:
long_description = fh.read()
extras = dict()
extras["all"] = [
"wandb>=0.10.30",
"hydra-core>=1.1.0",
"ipython",
"ipykernel",
"jupyter",
"matplotlib",
"seaborn",
"rich"
]
keywords = ["weak supervision", "data programming", "deep learning", "pytorch", "pytorch lightning", "weasel", "hydra", "CMU"]
setup(
name='weasel',
version='0.1.0',
packages=find_packages(
exclude=["tests", "*.tests", "*.tests.*", "tests.*"]
),
url='https://github.com/autonlab/weasel',
license='Apache 2.0',
author='Salva Rühling Cachay',
author_email='[email protected]',
description='Learn any neural net for classification from multiple noisy heuristics only. No training labels!',
long_description=long_description,
long_description_content_type="text/markdown",
keywords=keywords,
extras_require=extras,
python_requires=">=3.7.0",
install_requires=[
"torch>=1.7.1",
'pytorch-lightning==1.7.7',
"scikit-learn",
"pyyaml"
],
classifiers=[
"Intended Audience :: Developers",
"Intended Audience :: Education",
"Intended Audience :: Science/Research",
"License :: OSI Approved :: Apache Software License",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Topic :: Scientific/Engineering :: Artificial Intelligence",
],
)