-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
26 lines (25 loc) · 806 Bytes
/
setup.py
File metadata and controls
26 lines (25 loc) · 806 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
import setuptools
setuptools.setup(
# Name of the module
name='rumbledb',
version='1.22.0',
# Details
description='Jupyter extensions to use RumbleDB in notebooks, in server mode or through Apache Livy.',
# The project's main homepage.
url='https://www.rumbledb.org/',
# Author details
author='Ghislain Fourny',
author_email='ghislain.fourny@inf.ethz.ch',
# License
license='Apache License 2.0',
packages=setuptools.find_packages(where="src"),
package_dir={"": "src"},
keywords='rumble jsoniq rumbledb json IPython jupyter',
classifiers=[
# Intended Audience.
'Intended Audience :: Developers',
# Operating Systems.
'Operating System :: OS Independent',
],
install_requires=['requests', 'jupyter'],
)