- Notifications
You must be signed in to change notification settings - Fork 12
Expand file tree
/
Copy pathsetup.py
More file actions
Latest commit
23 lines (20 loc) · 651 Bytes
/
Copy pathsetup.py
File metadata and controls
23 lines (20 loc) · 651 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
#!/usr/bin/env python
fromdistutils.coreimportsetup
__version__='2.2.0'
setup(
name='bert',
version=__version__,
description='BERT Serialization Library',
author='Samuel Stauffer',
author_email='samuel@descolada.com',
url='https://github.com/samuel/python-bert',
packages= ['bert'],
install_requires= ["erlastic"],
classifiers= [
'Intended Audience :: Developers',
'License :: OSI Approved :: BSD License',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Topic :: Software Development :: Libraries :: Python Modules',
],
)