-
Notifications
You must be signed in to change notification settings - Fork 19
/
setup.py
37 lines (30 loc) · 1.13 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
#!/usr/bin/env python
# flake8: noqa
from setuptools import setup, find_packages
setup(
name = "a10-neutron-lbaas",
version = "1.8.1",
packages = find_packages(),
author = "A10 Networks",
author_email = "openstack@a10networks.com",
description = "A10 Networks Openstack LBaaS Driver Middleware",
license = "Apache",
keywords = "a10 axapi acos adc slb load balancer openstack neutron lbaas",
url = "https://github.com/a10networks/a10-neutron-lbaas",
long_description = open('README.md').read(),
long_description_content_type = "text/markdown",
classifiers = [
'License :: OSI Approved :: Apache Software License',
'Operating System :: POSIX',
'Programming Language :: Python',
'Programming Language :: Python :: 2.6',
'Programming Language :: Python :: 2.7',
'Topic :: Internet',
],
package_data={'': [
'a10_neutron_lbaas/db/migration/alembic.ini'
]},
include_package_data=True,
scripts=['scripts/a10-manage', 'scripts/a10-neutron-lbaas-db-manage'],
install_requires = ['acos-client>=1.4.6', 'a10-openstack-lib>=0.2.1']
)