-
Notifications
You must be signed in to change notification settings - Fork 9
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #1 from xbglowx/master
Create MANIFEST.in to include needed files so pip/easy_install would wor...
- Loading branch information
Showing
3 changed files
with
33 additions
and
20 deletions.
There are no files selected for viewing
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
include CONTRIBUTE.md | ||
include LICENSE.txt | ||
include netscalertool.conf.example | ||
include python-netscalertool.spec | ||
include README.md | ||
include requirements.txt |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -15,9 +15,9 @@ | |
See the License for the specific language governing permissions and | ||
limitations under the License. | ||
""" | ||
import sys | ||
|
||
from setuptools import setup, find_packages | ||
import sys | ||
|
||
PYTHON_REQ_BLACKLIST = [] | ||
|
||
|
@@ -44,39 +44,27 @@ def load_requirements(fname): | |
|
||
REQUIREMENTS = load_requirements('requirements.txt') | ||
|
||
long_description = open('README.md').read() | ||
|
||
setup( | ||
name='netscaler-tool', | ||
version='1.22', | ||
version='1.23', | ||
packages=find_packages(), | ||
|
||
author="Brian Glogower", | ||
author_email="[email protected]", | ||
url="https://github.com/tagged/netscaler-tool", | ||
description="Nitro API tool for managing NetScalers.", | ||
license="Apache v2.0", | ||
install_requires=REQUIREMENTS, | ||
entry_points={ | ||
'console_scripts': [ | ||
'netscaler-tool = netscalertool.netscalertool:main', | ||
] | ||
}, | ||
keywords=[ | ||
'API', | ||
'Automation', | ||
'library', | ||
'Nitro', | ||
'Networking', | ||
'NetScaler', | ||
], | ||
classifiers=[ | ||
'Development Status :: 3 - Alpha', | ||
'Development Status :: 5 - Production/Stable', | ||
'Environment :: Console', | ||
'Intended Audience :: Developers', | ||
'Intended Audience :: Information Technology', | ||
'Intended Audience :: System Administrators', | ||
'Natural Language :: English', | ||
'Operating System :: OS Independent', | ||
'Programming Language :: Python', | ||
'Programming Language :: Python :: 2', | ||
'Programming Language :: Python :: 2.6', | ||
'Programming Language :: Python :: 2.7', | ||
'Topic :: Internet', | ||
'Topic :: Software Development', | ||
'Topic :: Software Development :: Libraries :: Python Modules', | ||
|
@@ -86,4 +74,23 @@ def load_requirements(fname): | |
'Topic :: System :: Systems Administration', | ||
'Topic :: Utilities', | ||
], | ||
description="Nitro API tool for managing NetScalers.", | ||
entry_points={ | ||
'console_scripts': [ | ||
'netscaler-tool = netscalertool.netscalertool:main', | ||
] | ||
}, | ||
install_requires=REQUIREMENTS, | ||
keywords=[ | ||
'API', | ||
'Automation', | ||
'library', | ||
'Nitro', | ||
'Networking', | ||
'NetScaler', | ||
], | ||
long_description=long_description, | ||
license="Apache v2.0", | ||
platforms="any", | ||
url="https://github.com/tagged/netscaler-tool", | ||
) |