mirror of https://github.com/morpheus65535/bazarr
43 lines
1.1 KiB
Python
43 lines
1.1 KiB
Python
from setuptools import setup, find_packages
|
|
|
|
setup(
|
|
name='stevedore-examples2',
|
|
version='1.0',
|
|
|
|
description='Demonstration package for stevedore',
|
|
|
|
author='Doug Hellmann',
|
|
author_email='doug@doughellmann.com',
|
|
|
|
url='http://git.openstack.org/cgit/openstack/stevedore',
|
|
|
|
classifiers=['Development Status :: 3 - Alpha',
|
|
'License :: OSI Approved :: Apache Software License',
|
|
'Programming Language :: Python',
|
|
'Programming Language :: Python :: 2',
|
|
'Programming Language :: Python :: 2.7',
|
|
'Programming Language :: Python :: 3',
|
|
'Programming Language :: Python :: 3.4',
|
|
'Intended Audience :: Developers',
|
|
'Environment :: Console',
|
|
],
|
|
|
|
platforms=['Any'],
|
|
|
|
scripts=[],
|
|
|
|
provides=['stevedore.examples2',
|
|
],
|
|
|
|
packages=find_packages(),
|
|
include_package_data=True,
|
|
|
|
entry_points={
|
|
'stevedore.example.formatter': [
|
|
'field = stevedore.example2.fields:FieldList',
|
|
],
|
|
},
|
|
|
|
zip_safe=False,
|
|
)
|