-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
27 lines (25 loc) · 785 Bytes
/
setup.py
File metadata and controls
27 lines (25 loc) · 785 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
"""
PSB, a bot to scan local LAN for a whitelist of macs to report presence.
"""
import os.path
from setuptools import setup, find_packages
ROOT = os.path.realpath(os.path.join(os.path.dirname(__file__)))
setup(name='psb',
version='0.1',
description='A bot to scan local LAN for a whitelist of macs to report presence.',
url='https://github.com/aarro/psb',
author='Jacob Young',
author_email='jacobyoung@uta.io',
long_description=open(os.path.join(ROOT, 'readme.md')).read(),
license='MIT',
packages=find_packages(),
install_requires=[
'python-dotenv',
'slackclient'
],
entry_points={
'console_scripts': [
'psb=psb.__main__:main'
]
},
zip_safe=False)