forked from jerrymakesjelly/electricity-monitor
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
31 lines (29 loc) · 1.06 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
#-*- coding:UTF-8 -*-
from setuptools import setup, find_packages
from buptelecmon.version import __version__
setup(name = 'buptelecmon',
version = __version__,
description = 'A program for checking electricity charge.',
long_description = open('README.rst').read(),
classifiers = [
'Development Status :: 5 - Production/Stable',
'Environment :: Console',
'License :: OSI Approved :: MIT License',
'Programming Language :: Python :: 3 :: Only',
'Topic :: Utilities'
], # Get more classifiers from https://pypi.org/pypi?%3Aaction=list_classifiers
keywords = 'python bupt electricity',
author = 'jerrymakesjelly',
author_email = '[email protected]',
url = 'https://github.com/jerrymakesjelly/electricity-monitor',
license = 'MIT',
packages = find_packages(),
include_package_data = True,
zip_safe = True,
install_requires = open('requirements.txt', 'r').read().split(),
entry_points = {
'console_scripts':[
'elecinfo = buptelecmon.main:loader'
]
}
)