forked from verisign/python-confluent-schemaregistry
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
36 lines (29 loc) · 977 Bytes
/
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
# Setup
try:
from setuptools import setup
except ImportError:
from distutils.core import setup
from sys import version_info
import confluent.schemaregistry
install_requires = []
version = '.'.join([ str(confluent.schemaregistry.__version__[i]) for i in range(3) ])
setup(
name = 'confluent-schemaregistry',
version = version,
packages = ['confluent',
'confluent.schemaregistry',
'confluent.schemaregistry.serializers',
'confluent.schemaregistry.client'],
# Project uses simplejson, so ensure that it gets installed or upgraded
# on the target machine
install_requires = ['avro'],
# metadata for upload to PyPI
author = 'Verisign',
author_email = '[email protected]',
description = 'Confluent Schema Registry lib',
keywords = 'confluent schema registry schemaregistry',
extras_require = {
'fastavro': ['fastavro'],
},
test_requires = ['unittest2']
)