-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathsetup.py
More file actions
31 lines (28 loc) · 714 Bytes
/
setup.py
File metadata and controls
31 lines (28 loc) · 714 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
27
28
29
30
from setuptools import setup, find_packages
exec(open("elabjournal/_version.py").read())
setup(
name="elabjournal",
version=__version__,
author="Matthijs Brouwer",
url="https://github.com/matthijsbrouwer/elabjournal-python",
packages=find_packages(),
license="Apache License 2.0",
long_description=open("README.txt").read(),
install_requires=[
"requests >= 2.18.4",
"pandas",
"keyring",
"IPython",
"rjson",
"xlrd",
"matplotlib",
"Pillow",
"ipywidgets",
"graphviz",
"openpyxl"
],
classifiers=[
"Framework :: Jupyter",
"Intended Audience :: Science/Research",
],
)