forked from lensesio/python-serializers
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsetup.py
41 lines (35 loc) · 1.32 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
from setuptools import setup
def version():
with open('VERSION') as f:
return f.read().strip()
def reqs():
return [
line.strip() for line in open('requirements.txt') if not line.startswith('#')
]
setup(
name = 'avroschemaserializer',
description = 'Python 3 Confluent Schema Registry Client',
version = version(),
license = 'Apache 2.0',
author = 'avroschemaserializer',
author_email = '[email protected]',
keywords = 'avroschemaserializer schema registry schemaregistry confluent avro',
install_requires = reqs(),
tests_require = ['mock'],
url = 'https://github.com/gregchu/python-serializers',
classifiers = [
'Development Status :: 4 - Beta',
'Intended Audience :: Developers',
'License :: OSI Approved :: Apache Software License',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Topic :: Software Development :: Libraries',
],
packages = [
'avroschemaserializer',
'avroschemaserializer.schemaregistry',
'avroschemaserializer.schemaregistry.serializers',
'avroschemaserializer.schemaregistry.client',
'avroschemaserializer.schemaregistry.tests'
],
)