-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
43 lines (40 loc) · 967 Bytes
/
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
from setuptools import setup
DISTNAME = "Single beam OSTEM Demo"
DESCRIPTION = "Demonstration repository for single beam optical scanning electron microscopy (OSTEM)"
MAINTAINER = "Arent Kievits"
MAINTAINER_EMAIL = "[email protected]"
LICENSE = "LICENSE"
URL = "https://github.com/arentkievits/ostem"
VERSION = "0.1.dev"
PACKAGES = [
"code",
]
INSTALL_REQUIRES = [
"jupyterlab",
"ipython",
"scipy",
"scikit-image",
"beautifulsoup4",
"altair",
"numpy",
"tifffile",
"seaborn",
"tqdm",
"lxml",
"ipywidgets",
"ipympl",
]
if __name__ == '__main__':
setup(
name=DISTNAME,
version=VERSION,
author=MAINTAINER,
author_email=MAINTAINER_EMAIL,
packages=PACKAGES,
include_package_data=False,
url=URL,
license=LICENSE,
description=DESCRIPTION,
long_description=open("README.md").read(),
install_requires=INSTALL_REQUIRES,
)