-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
30 lines (28 loc) · 802 Bytes
/
setup.py
File metadata and controls
30 lines (28 loc) · 802 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
27
28
29
30
#!/usr/bin/python
from setuptools import setup,find_packages
setup(
name='PyTappd',
version='0.7',
license='Creative Commons Attribution-Noncommercial-Share Alike license',
author='Robert Auch',
author_email='rauch@totalnetsolutions.net',
long_description=open('README.md').read(),
classifiers=[
'Development Status :: 4 - Beta',
'Indended Audience :: Security Administrators',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3.7',
],
package_dir={'':'src'},
packages=find_packages(where='src'),
python_requires='>=2.7',
install_requires=[
'requests',
'cmd',
],
entry_points={
'console_scripts': [
'sample=sample:main',
],
},
)