-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathsetup.py
More file actions
26 lines (22 loc) · 698 Bytes
/
Copy pathsetup.py
File metadata and controls
26 lines (22 loc) · 698 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
# -*- coding: utf-8 -*-
from setuptools import setup, find_packages
with open('README.md', 'r') as fh:
long_description = fh.read()
packages = [p for p in find_packages() if "third_party" not in p]
print(packages)
setup(
name='ats-models',
packages=packages,
version='0.0.1',
description='Code to finetune sentence/paragraph based models for ATS',
author='Annette Rios',
author_email='[email protected]',
url='https://github.com/a-rios/ats-models.git',
keywords=['ATS'],
install_requires=['torch', 'transformers', 'numpy'],
long_description=long_description,
long_description_content_type='text/markdown',
classifiers=[
'Programming Language :: Python :: 3.9',
]
)