-
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) · 750 Bytes
/
setup.py
File metadata and controls
26 lines (24 loc) · 750 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
setup(
name='cli-tools',
version='1.0',
packages=find_packages(), # Automatically finds the cmds directory and other packages
install_requires=[
'requests',
'python-dotenv'
],
entry_points={
'console_scripts': [
'weather = cmds.weather:main',
'neo = cmds.neo:main',
'wut = cmds.define:main',
'sky = cmds.sky:main',
'weather_log = cmds.weather_logger:main',
'sensors = cmds.s_array:main',
'lights = cmds.lights:main',
'pollen = cmds.pollen:main',
'scan = cmds.scan_network:main',
'nyc = cmds.might_take_awhile:main'
],
},
)