-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathsetup.py
More file actions
33 lines (30 loc) · 1.08 KB
/
setup.py
File metadata and controls
33 lines (30 loc) · 1.08 KB
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
from distutils.core import setup
import setuptools
with open('README.md') as f:
long_description = f.read()
setup(
name='python-liftbridge',
version='0.0.7',
description='Python client for Liftbridge.',
long_description=long_description,
long_description_content_type='text/markdown',
url='https://github.com/dgzlopes/python-liftbridge',
license='Apache Software License (Apache License, Version 2.0)',
install_requires=[
'grpcio>=1.23.0,<2',
],
classifiers=[
'Development Status :: 3 - Alpha',
'Intended Audience :: Developers',
'Natural Language :: English',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
'License :: OSI Approved :: Apache Software License',
'Topic :: Software Development :: Libraries :: Python Modules',
'Topic :: System :: Systems Administration',
'Topic :: System :: Networking',
],
author='Daniel González Lopes',
author_email='danielgonzalezlopes@gmail.com',
packages=setuptools.find_packages(),
)