-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathsetup.py
44 lines (41 loc) · 1.03 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
"""Setup file for MavenWorks python package."""
from setuptools import setup
import os
with open("README.md") as f:
desc = f.read()
setup(
name="mavenworks",
version="0.0.4.dev1+build" + os.environ.get("BUILD_NUMBER", "develop"),
description="Dashboarding for JupyterLab",
long_description=desc,
long_description_content_type="text/markdown",
author="Mavenomics, Inc",
license="GPL-3.0 (C) 2019 Mavenomics, Inc.",
classifiers=[
"Development Status :: 2 - Pre-Alpha",
"Framework :: IPython",
],
packages=[
"mavenworks",
"mavenworks.dashboard",
"mavenworks.parts",
"mavenworks.services",
"mavenworks.server",
],
install_requires=[
"requests",
"rx>=1.0,<3",
"jupyterlab>1.0",
"pandas",
"IPython",
"ipywidgets",
"matplotlib",
],
extra_requires={
"pyarrow-table-interop": [
"pyarrow"
]
},
python_requires="~=3.6",
include_package_data=True
)