forked from lucky/bertlet
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
25 lines (23 loc) · 753 Bytes
/
Copy pathsetup.py
File metadata and controls
25 lines (23 loc) · 753 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
from distutils.core import setup
from bertlet import __version__
version = __version__
setup(
name='bertlet',
version=version,
description='BERT-RPC using Eventlet',
author='Jared Kuolt',
author_email='luckythetourist@gmail.com',
url='http://github.com/luckythetourist/bertlet',
packages=['bertlet'],
license='MIT License',
platforms=['any'],
classifiers=[
'Development Status :: 4 - Beta',
'Intended Audience :: Developers',
'License :: OSI Approved :: MIT License',
'Programming Language :: Python',
'Topic :: Software Development',
'Topic :: Software Development :: Libraries',
'Topic :: Software Development :: Libraries :: Python Modules'
]
)