-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathsetup.py
More file actions
38 lines (27 loc) · 884 Bytes
/
setup.py
File metadata and controls
38 lines (27 loc) · 884 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
26
27
28
29
30
31
32
33
34
35
36
37
38
#!/usr/bin/env python
import os
from distutils.util import convert_path
from setuptools import setup, find_packages
location = os.path.abspath(os.path.dirname(__file__))
with open('README.md') as readme:
description = readme.read()
metadata = dict()
with open(convert_path('src/protobuf_simple_socket_rpc/version.py')) as metadata_file:
exec(metadata_file.read(), metadata)
setup(
name='protobuf_simple_socket_rpc',
version=metadata['__version__'],
description='Simple socket RPC implementation for Google Protobuf',
long_description=description,
url='https://github.com/exante/python-protobuf-simple-socket-rpc',
author='EXANTE',
author_email='',
license='MIT',
keywords='protubuf socket rpc',
packages=find_packages('src'),
package_dir={'': 'src'},
zip_safe=False,
install_requires=[
'protobuf'
]
)