-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathsetup.py
More file actions
22 lines (18 loc) · 699 Bytes
/
setup.py
File metadata and controls
22 lines (18 loc) · 699 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
from pathlib import Path
from setuptools import find_packages, setup
name = 'torchglyph'
root_dir = Path(__file__).parent.resolve()
with (root_dir / 'requirements.txt').open(mode='r', encoding='utf-8') as fp:
install_requires = [install_require.strip() for install_require in fp]
setup(
name=name,
version='0.4.0',
packages=[package for package in find_packages() if package.startswith(name)],
url=f'https://speedcell4.github.io/torchglyph',
license='MIT',
author='speedcell4',
author_email='speedcell4@gmail.com',
description='Data Processor Combinators for Natural Language Processing',
python_requires='>=3.9',
install_requires=install_requires,
)