-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
32 lines (28 loc) · 846 Bytes
/
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
import os
from setuptools import setup
def read(fname):
return open(os.path.join(os.path.dirname(__file__), fname)).read()
setup(
name="bawt",
version="0.0.1",
author="DoriftoShoes",
author_email="[email protected]",
description="Garage/hydroponics controller project ",
license="Apache",
keywords="hydroponics",
url="https://github.com/DoriftoShoes/bawt",
packages=['bawt', 'tests'],
long_description=read('README.md'),
classifiers=[
"Development Status :: 3 - Alpha",
"Topic :: Utilities",
"License :: OSI Approved :: Apache Software License",
],
entry_points={
'console_scripts': [
'timelapsed = bawt.bin.timelapsed:main',
'irrigationd = bawt.bin.irrigationd:main',
'bawt = bawt.bin.bawtcli:cli'
]
}
)