forked from deepak7376/wsn-sim
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
40 lines (35 loc) · 1.05 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
36
37
38
39
40
from setuptools import setup, find_packages
# reading long description from file
with open("DESCRIPTION.txt") as file:
long_description = file.read()
# specify requirements of your package here
# REQUIREMENTS = []
# some more details
CLASSIFIERS = [
"Development Status :: 3 - Alpha",
"Intended Audience :: Developers",
"Topic :: Internet",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.3",
"Programming Language :: Python :: 3.4",
"Programming Language :: Python :: 3.5",
]
# calling the setup function
setup(
name="wsnFault",
version="1.0.0",
description="Fault detection",
long_description="WSN",
url="https://github.com/deepak7376/wsnFault",
author="Deepak Yadav",
author_email="[email protected]",
license="MIT",
packages=find_packages(),
classifiers=CLASSIFIERS,
# install_requires=REQUIREMENTS,
keywords="wsn fault statistical",
include_package_data=True,
zip_safe=False,
python_requires=">=3",
)