-
Notifications
You must be signed in to change notification settings - Fork 7
/
setup.py
41 lines (36 loc) · 1.09 KB
/
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
32
33
34
35
36
37
38
39
40
41
"""
Barrister
---------
Polyglot RPC system that can enforce types expressed in an easy to write IDL.
Designed to be enjoyable to use from both static and dynamic languages.
Links
`````
* `main site <http://barrister.bitmechanic.com/>`_
* `GitHub repo <https://github.com/coopernurse/barrister>`_
"""
from distutils.core import setup
setup(
name='barrister',
version='0.1.7',
url='https://github.com/coopernurse/barrister',
scripts=['bin/barrister'],
packages=['barrister',],
license='MIT',
author='James Cooper',
author_email='[email protected]',
description='Polyglot RPC',
long_description=__doc__,
install_requires=[
'Markdown',
'plex3 @ git+https://github.com/uogbuji/plex3.git'
],
classifiers=[
'Development Status :: 3 - Alpha',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Intended Audience :: Developers',
'License :: OSI Approved :: MIT License',
'Topic :: System :: Distributed Computing',
'Topic :: Software Development :: Libraries'
]
)