-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsetup.py
37 lines (35 loc) · 1.07 KB
/
setup.py
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
from setuptools import *
description = 'Python based command line interface tool for plexus.'
setup(
name='pyplexus',
version='1.0.3',
description=description,
long_description=description,
url='https://github.com/baliame/pyplexus',
author='Baliame',
author_email='[email protected]',
license='MIT',
classifiers=[
'Development Status :: 5 - Production/Stable',
'Environment :: Console',
'Intended Audience :: Developers',
'License :: OSI Approved :: MIT License',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.2',
'Programming Language :: Python :: 3.3',
'Programming Language :: Python :: 3.4',
'Programming Language :: Python :: 3.5',
'Topic :: Utilities',
],
keywords='hmac development library',
packages=find_packages(),
install_requires=[
"boto3",
"click",
"http-hmac-python",
"requests",
],
entry_points={
'console_scripts': ['plexus.py=pyplexus.pyplexus:cli'],
}
)