-
Notifications
You must be signed in to change notification settings - Fork 13
/
Copy pathsetup.py
56 lines (48 loc) · 1.78 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
56
from __future__ import absolute_import, print_function, unicode_literals
import sys
try:
from setuptools import setup, find_packages
except ImportError:
sys.stderr.write("""Could not import setuptools or your version
of the package is out of date.
Make sure you have pip and setuptools installed and upgraded and try again:
$ python -m pip install --upgrade pip setuptools
$ python setup.py install
""")
def load_tests():
from wolframwebengine.cli.commands.test import Command as TestCommand
TestCommand().handle()
setup(
name = 'wolframwebengine',
version = '1.0.4',
description = 'A Python library with various tools to start a wolfram engine a server content.',
keywords=['Wolfram Language', 'Wolfram Desktop', 'Mathematica', 'Web Development', 'Wolfram Web Engine'],
author = 'Wolfram Research, Riccardo Di Virgilio',
author_email = '[email protected], [email protected]',
packages=find_packages(),
test_suite='setup.load_tests',
python_requires='>=3.5.3',
include_package_data=True,
install_requires = [
'wolframclient>=1.1.10',
'aiohttp>=3.5.4'
],
project_urls={
'Source code': 'https://github.com/WolframResearch/WolframWebEngineForPython',
'Wolfram Research': 'https://www.wolfram.com',
},
classifiers = [
"License :: OSI Approved :: MIT License",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.5",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
"Topic :: Software Development :: Libraries"
],
entry_points={
'console_scripts': [
'wolframwebengine = wolframwebengine.__main__:main',
]
}
)