-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
28 lines (24 loc) · 745 Bytes
/
setup.py
File metadata and controls
28 lines (24 loc) · 745 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
27
28
from setuptools import setup, find_packages
setup(
name = "device-stats",
version = "0.1",
#packages = find_packages(),
py_modules=['devicestats'],
scripts = [],
# Project uses reStructuredText, so ensure that the docutils get
# installed or upgraded on the target machine
install_requires = [],
package_data = {
# If any package contains *.txt or *.rst files, include them:
'': ['*.txt'],
},
entry_points={
'console_scripts': ['devicestats = devicestats:main']
},
# metadata for upload to PyPI
author = "Alejandro Pereira Calvo",
description = "Handles IOT device information",
license = "",
keywords = "",
url = ""
)