-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
59 lines (51 loc) · 1.53 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
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
import codecs
import os
from setuptools import setup, find_packages
here = os.path.abspath(os.path.dirname(__file__))
REQUIREMENTS = [
'schematics',
'protobuf',
]
TEST_REQUIREMENTS = [
'flake8',
'mock',
'tox',
'pytest',
'pytest-cache',
'pytest-cover',
'pytest-sugar',
'pytest-xdist',
]
with codecs.open(os.path.join(here, 'README.rst'), encoding='utf-8') as f:
README = f.read()
setup(name='proto_schematics',
version='0.1.0',
description='Converts protobuf generated messages to Python friendly schematics models.',
long_description=README,
license='Apache License (2.0)',
author='Loggi Tecnologia ltda.',
author_email='gsurita@loggi.com',
url='https://github.com/loggi/proto-schematics',
classifiers=[
'Intended Audience :: Developers',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Programming Language :: Python :: 2',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.4',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
],
keywords=[
'loggi',
'schematics',
'protobuf',
'grpc',
],
packages=find_packages(),
include_package_data=True,
zip_safe=False,
install_requires=REQUIREMENTS,
test_suite='tests',
tests_require=TEST_REQUIREMENTS+REQUIREMENTS)