Skip to content

Commit

Permalink
add setup.py
Browse files Browse the repository at this point in the history
  • Loading branch information
brysontyrrell committed Apr 21, 2017
1 parent b5b5019 commit 265e1b6
Showing 1 changed file with 36 additions and 0 deletions.
36 changes: 36 additions & 0 deletions setup.py
@@ -0,0 +1,36 @@
#!/usr/bin/env python

from setuptools import setup
import re

with open('jook/__init__.py', 'r') as fobj:
version = re.search(r'^__version__\s*=\s*[\'"]([^\'"]*)[\'"]',
fobj.read(), re.MULTILINE).group(1)

with open('README.rst', 'r') as fobj:
long_description = fobj.read()

setup(
name='Jook',
version=version,
description='A Jamf Pro webhook simulator',
long_description=long_description,
url='https://github.com/brysontyrrell/Jook',
author='Bryson Tyrrell',
author_email='bryson.tyrrell@gmail.com',
license='MIT',
classifiers=[
'Development Status :: 1 - Planning',
'Intended Audience :: Developers',
'Intended Audience :: Information Technology',
'License :: OSI Approved :: MIT License',
'Programming Language :: Python :: 2.7'
],
keywords='jamf webhooks testing',
packages=['jook'],
install_requires=[
'dicttoxml>=1.7',
'requests>=2.11'
],
zip_safe=False
)

0 comments on commit 265e1b6

Please sign in to comment.