-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathsetup.py
More file actions
23 lines (21 loc) · 775 Bytes
/
Copy pathsetup.py
File metadata and controls
23 lines (21 loc) · 775 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
from setuptools import setup
from subprocess import check_output
with open('VERSION.txt', 'r') as content_file:
version = content_file.read()
setup(
name='mnemosyne-client',
version=version[1:],
description='mnemosyne service grpc client library',
url='http://github.com/piotrkowalczuk/mnemosyne',
author='Piotr Kowalczuk',
author_email='p.kowalczuk.priv@gmail.com',
license='MIT',
packages=['mnemosynerpc'],
install_requires=[
'protobuf',
'grpcio',
],
zip_safe=False,
keywords=['mnemosyne', 'grpc', 'session', 'service', 'client'],
download_url='https://github.com/piotrkowalczuk/mnemosyne/archive/%s.tar.gz' % version.rstrip(),
)