-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathsetup.py
35 lines (31 loc) · 1.13 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
#!/usr/bin/env python
##
# Fisher Innovation Automated Greenhouse Controller
# @author Matt Fisher (Fisher Innovation - http://fisherinnovation.com) [[email protected]]
#
# Copyright (c) 2013 Fisher Innovation
# Licensed the MIT license.
#
# http://www.fisherinnovation.com
# https://github.com/fisherinnovation/FI-Automated-Greenhouse
##
import os
from setuptools import setup
def read(fname):
return open(os.path.join(os.path.dirname(__file__), fname)).read()
setup(
name = "FI-Automated Greenhouse",
version = "0.0.1",
author = "Matt Fisher",
author_email = "[email protected]",
description = ("The Fisher Innovation Automated Greenhouse is a experimental prototype contained hydroponic greenhouse with automated climate control for use in small spaces."),
license = "MIT",
keywords = "raspberry pi automated greenhouse",
url = "https://github.com/fisherinnovation/FI-Automated-Greenhouse",
packages=['an_example_pypi_project', 'tests'],
long_description=read('README'),
classifiers=[
"Development Status :: 1 - Alpha",
"Topic :: Utilities",
"License :: MIT License",
],