-
Notifications
You must be signed in to change notification settings - Fork 2
/
setup.py
30 lines (29 loc) · 805 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
from setuptools import setup
name_ = 'flow'
version_ = '0.5'
packages_ = [
'flow',
'flow.source',
]
classifiers_ = [
"Development Status :: 5 - Production/Stable",
"Intended Audience :: Developers",
"Programming Language :: Python :: 2",
"Operating System :: MacOS",
"Operating System :: Microsoft :: Windows",
"Operating System :: POSIX :: Linux",
]
setup(
name=name_,
version=version_,
author='Vizrt',
author_email='jegneblad@DELETEMEvizrt.com',
description='Daemon and tool framework for the Viz One API',
license="Vizrt Confidential",
url='https://github.com/eblade/flow',
download_url='https://github.com/eblade/flow/archive/master.zip',
packages=packages_,
classifiers=classifiers_,
scripts=[],
install_requires=[]
)