-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathsetup.py
More file actions
24 lines (21 loc) · 718 Bytes
/
Copy pathsetup.py
File metadata and controls
24 lines (21 loc) · 718 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
# pylint: disable=missing-docstring
import setuptools
setuptools.setup(
name="n2c2_ss",
description="Structured sequence approach to n2c2 2022 track 2 social determinants of health (SDoH) challenge",
author="Brian Romanowski",
author_email="romanows@gmail.com",
install_requires=[
"transformers",
],
license="secret",
classifiers=[
"Intended Audience :: Science/Research",
"Operating System :: POSIX :: Linux",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
],
packages=setuptools.find_packages(),
)