-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathsetup.py
More file actions
20 lines (18 loc) · 718 Bytes
/
Copy pathsetup.py
File metadata and controls
20 lines (18 loc) · 718 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
import setuptools
with open("README.md", "r") as f:
long_description = f.read()
setuptools.setup(
name="energy_consumption",
version="0.0.1",
author="Aditya Vinod Kumar, Rishi Ravikumar",
author_email="Aditya Vinod Kumar <ads.vinodk@gmail.com>, Rishi Ravikumar <rishiravi.k98@gmail.com>",
description="Predictive Application for Conserving Energy based on Household Appliances",
long_description=long_description,
long_description_content_type="text/markdown",
url="https://github.com/adityavinodk/energy_consumption",
classifiers=(
'Programming Language :: Python :: 3.7',
"License :: Apache 2.0 License",
"Operating System :: OS Independent",
),
)