-
Notifications
You must be signed in to change notification settings - Fork 9
/
setup.py
35 lines (28 loc) · 879 Bytes
/
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
import os
from setuptools import setup
def read(fname):
return open(os.path.join(os.path.dirname(__file__), fname)).read()
from distutils.util import convert_path
main_ns = {}
ver_path = convert_path('ISStreamer/version.py')
with open(ver_path) as ver_file:
exec(ver_file.read(), main_ns)
setup(
name = "ISStreamer",
version = main_ns['__version__'],
packages=['ISStreamer'],
package_dir={
"ISStreamer": "ISStreamer"
},
author = "David Sulpy, Initial State Technologies",
author_email = "[email protected]",
description = ("A python module to simplify the process of getting log data to Initial State's 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"
]
)