-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
26 lines (23 loc) · 749 Bytes
/
Copy pathsetup.py
File metadata and controls
26 lines (23 loc) · 749 Bytes
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
from setuptools import setup
__version__ = '1.1.1'
pybuf_classifiers = [
'Programming Language :: Python :: 2',
'Intended Audience :: Developers',
'Natural Language :: English',
'License :: OSI Approved :: MIT License',
'Topic :: Software Development :: Libraries',
'Topic :: Utilities'
]
description = 'Modularize Protocol Buffer Compiler generated code for use within your package'
setup(
name='pybuf',
author='Marcus Medley',
author_email='mdmeds@gmail.com',
url='https://github.com/mdmedley/pybuf',
version=__version__,
py_modules=['pybuf'],
install_requires=['protobuf'],
description=description,
long_description=description,
license='MIT',
classifiers=pybuf_classifiers)