-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
26 lines (24 loc) · 817 Bytes
/
Copy pathsetup.py
File metadata and controls
26 lines (24 loc) · 817 Bytes
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
from setuptools import setup, find_packages
from perch import __version__
setup(
name='perch',
version=__version__,
author='Nick Hagianis',
author_email='dev@perchsecurity.com',
url='https://github.com/usePF/perch-client',
packages=find_packages(exclude=['tests', 'examples']),
include_package_data=True,
license='MIT',
description='Perch Security python client and command line tools',
long_description='Perch Security python client and command line tools',
install_requires=['click', 'requests', 'unicodecsv'],
entry_points='''
[console_scripts]
perch=perch.main:cli
''',
classifiers=[
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
]
)