Uh oh!
There was an error while loading. Please reload this page.
- Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
Latest commit
35 lines (28 loc) · 816 Bytes
/
Copy pathsetup.py
File metadata and controls
35 lines (28 loc) · 816 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
29
30
31
32
33
34
35
importos
fromsetuptoolsimportsetup
defread(fname):
returnopen(os.path.join(os.path.dirname(__file__), fname)).read()
fromdistutils.utilimportconvert_path
main_ns= {}
ver_path=convert_path('ISReader/version.py')
withopen(ver_path) asver_file:
exec(ver_file.read(), main_ns)
setup(
name="ISReader",
version=main_ns['__version__'],
packages=['ISReader'],
package_dir={
"ISReader": "ISReader"
},
author="Initial State Technologies",
author_email="support@initialstate.com",
description= ("Read data from the Initial State IoT platform"),
license="MIT",
keywords="logger,logstream,initial state",
url="https://www.initialstate.com",
classifiers=[
"Development Status :: 5 - Production/Stable",
"Topic :: Utilities",
"License :: OSI Approved :: MIT License"
]
)