-
Notifications
You must be signed in to change notification settings - Fork 8
Expand file tree
/
Copy pathsetup.py
More file actions
45 lines (38 loc) · 1.43 KB
/
setup.py
File metadata and controls
45 lines (38 loc) · 1.43 KB
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
41
42
43
44
from setuptools import find_packages, setup
import os
with open("README.md", "r") as fh:
long_description = fh.read()
with open("requirements.txt") as f:
REQ = f.read().splitlines()
# get __version__ from _version.py
ver_file = os.path.join('IoTPy', '_version.py')
with open(ver_file) as f:
exec(f.read())
VER = __version__
CLASSIFIERS = ['Intended Audience :: Science/Research',
'Intended Audience :: Developers',
'License :: OSI Approved :: BSD License',
'Programming Language :: Python',
'Topic :: Software Development',
'Topic :: Scientific/Engineering',
'Operating System :: Microsoft :: Windows',
'Operating System :: POSIX',
'Operating System :: Unix',
'Operating System :: MacOS',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3.8']
setup(
name="IoTPy",
version=1.1.1,
author="Mani Chandy",
author_email="kmchandy@gmail.com",
description="IoTPy - Sense & Respond Applications",
long_description=long_description,
long_description_content_type="text/markdown",
url="https://github.com/AssembleSoftware/IoTPy",
classifiers= CLASSIFIERS,
packages = find_packages(),
install_requires = REQ
)