-
Notifications
You must be signed in to change notification settings - Fork 101
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
d442832
commit 535b147
Showing
1 changed file
with
29 additions
and
5 deletions.
There are no files selected for viewing
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 |
---|---|---|
|
@@ -2,6 +2,13 @@ | |
|
||
# $ ./setup.py sdist | ||
|
||
# PyPI | ||
|
||
# one time | ||
# $ ./setup.py register -r testpypi | ||
|
||
# $ ./setup.py sdist upload -r testpypi | ||
|
||
from distutils.core import setup | ||
|
||
version = 'snapshot' | ||
|
@@ -16,16 +23,33 @@ | |
import time | ||
version = 'snapshot-' + time.strftime('%Y%m%d') | ||
|
||
with open('README.txt') as file: | ||
long_description = file.read() | ||
|
||
setup(name='pan-python', | ||
version=version, | ||
description='Python package for PAN-OS', | ||
long_description='Python interface to the PAN-OS XML API', | ||
description='Multi-tool set for Palo Alto Networks PAN-OS and ' + | ||
'Panorama API and XML configuration', | ||
long_description=long_description, | ||
author='Kevin Steves', | ||
author_email='[email protected]', | ||
url='https://github.com/kevinsteves/pan-python', | ||
license='ISC', | ||
# | ||
package_dir = {'': 'lib'}, | ||
classifiers=[ | ||
'Development Status :: 3 - Alpha', | ||
'Environment :: Console', | ||
'Intended Audience :: Developers', | ||
'Intended Audience :: End Users/Desktop', | ||
'License :: OSI Approved :: ISC License (ISCL)', | ||
'Programming Language :: Python', | ||
'Programming Language :: Python :: 2', | ||
'Programming Language :: Python :: 2.7', | ||
'Programming Language :: Python :: 3', | ||
'Programming Language :: Python :: 3.2', | ||
'Programming Language :: Python :: 3.3', | ||
], | ||
|
||
package_dir={'': 'lib'}, | ||
packages=['pan'], | ||
scripts=['bin/panxapi.py', 'bin/panconf.py'] | ||
) | ||
) |