-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
55 lines (49 loc) · 1.85 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
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
#!/usr/bin/env python
import os, sys
try:
from setuptools import setup
except ImportError:
from distutils.core import setup
install_requires = ['tornado', 'param']
extras_require={'all': ['imagen', 'pillow', 'pyperclip']}
setup_args = dict(
name='boxflow',
version="0.0.4",
install_requires = install_requires,
extras_require = extras_require,
description='Visual dataflow programming between parameterized objects.',
long_description=open('README.md').read() if os.path.isfile('README.md') else 'Consult README.md',
author= "Jean-Luc Stevens",
author_email= "jlrstevens@gmail.com",
maintainer= "IOAM",
maintainer_email= "jlrstevens@gmail.com",
platforms=['Windows', 'Mac OS X', 'Linux'],
license='BSD',
url='https://github.com/ioam/boxflow',
packages = ["boxflow", "boxflow.assets", "boxflow.js",
"boxflow.static", "boxflow.interface"],
package_data={'boxflow':['*.tpl'],
'boxflow.assets':['*.png'],
'boxflow.js':['*.js'],
'boxflow.static':['*.js']},
entry_points={
'console_scripts': [
'boxflow = boxflow.server:console_script'
]},
classifiers = [
"License :: OSI Approved :: BSD License",
"Development Status :: 3 - Alpha",
"Programming Language :: Python :: 2.7",
"Programming Language :: Python :: 3.3",
"Programming Language :: Python :: 3.4",
"Programming Language :: Python :: 3.5",
"Programming Language :: Python :: 3.6",
"Operating System :: OS Independent",
"Intended Audience :: Science/Research",
"Intended Audience :: Developers",
"Natural Language :: English",
"Topic :: Scientific/Engineering",
"Topic :: Software Development :: Libraries"]
)
if __name__=="__main__":
setup(**setup_args)