forked from uwdata/draco-learn
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
23 lines (20 loc) · 705 Bytes
/
setup.py
File metadata and controls
23 lines (20 loc) · 705 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
from os.path import abspath, dirname, join
from setuptools import Command, setup
from malfoy import __version__
this_dir = abspath(dirname(__file__))
with open(join(this_dir, "README.md"), encoding="utf-8") as file:
long_description = file.read()
setup(
name="malfoy",
version=__version__,
description="Learning weights for Draco",
long_description=long_description,
author="Dominik Moritz, Chenglong Wang",
author_email="domoritz@cs.washington.edu, clwang@cs.washington.edu",
license="BSD-3",
url="https://github.com/uwdata/draco-learn",
packages=["malfoy"],
install_requires=["draco"],
setup_requires=["pytest-runner"],
tests_require=["pytest"],
)