-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathsetup.py
executable file
·31 lines (28 loc) · 920 Bytes
/
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
from setuptools import setup, find_packages
with open('README.md') as f:
readme = f.read()
with open('LICENSE') as f:
license = f.read()
setup(
name='deepbond',
version='0.0.3',
description='Deep neural approach to Boundary and Disfluency Detection',
long_description=readme,
author='Marcos Treviso',
author_email='[email protected]',
url='https://github.com/mtreviso/deepbond',
license=license,
packages=find_packages(exclude=('tests', 'docs')),
data_files=['LICENSE'],
zip_safe=False,
keywords='evaluator',
classifiers=[
'Development Status :: 2 - Pre-Alpha',
'Intended Audience :: Developers',
'Natural Language :: English',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
]
)