-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathsetup.py
More file actions
37 lines (28 loc) · 1.01 KB
/
setup.py
File metadata and controls
37 lines (28 loc) · 1.01 KB
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 python3
from setuptools import setup, find_packages
from PfsenseFauxapi.__version__ import __version__
with open('README.md', 'r') as f:
long_description = f.read()
setup(
name='pfsense-fauxapi',
version=__version__,
description='Python client for the pfSense-FauxAPI on a pfSense host',
long_description=long_description,
long_description_content_type='text/markdown',
classifiers=[
'Topic :: System :: Networking :: Firewalls',
'Intended Audience :: System Administrators',
'Intended Audience :: Information Technology',
'License :: OSI Approved :: Apache Software License',
],
keywords='pfsense pfsense-fauxapi devops',
author='Nicholas de Jong',
author_email='contact@nicholasdejong.com',
url='https://github.com/ndejong/pfsense_fauxapi',
license='Apache',
packages=find_packages(),
scripts=['bin/fauxapi'],
install_requires=['requests'],
setup_requires=['pytest-runner'],
tests_require=['pytest'],
)