-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathsetup.py
More file actions
40 lines (35 loc) · 1.6 KB
/
setup.py
File metadata and controls
40 lines (35 loc) · 1.6 KB
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
# -*- coding: utf-8 -*-
"""
Created on Fri Mar 22 11:02:56 2019
@author: Johanna Rahm
Research group Heilemann
Institute for Physical and Theoretical Chemistry, Goethe University Frankfurt a.M.
"""
import setuptools
with open("README.md", "r") as fh:
long_description = fh.read()
setuptools.setup(name="SPTAnalyser",
version="230714",
author="Johanna Rahm and Sebastian Malkusch",
author_email="johanna-rahm@gmx.de",
description="a package for analysing SPT data",
long_description=long_description,
long_description_content_type="text/markdown",
licence="GNU GENERAL PUBLIC LICENSE",
url="https:/github.com/JohannaRahm/SPTAnalyser",
packages=setuptools.find_packages(),
install_requires=["numpy>=1.20.0",
"matplotlib",
"seaborn",
"scipy",
"h5py",
"tqdm",
"ipywidgets",
"IPython",
"hide_code",
"tornado",
"pandas",
"graphviz"],
classifiers=["Programming Language :: Python :: 3.9",
"License :: OSI Approved :: GNU General Public License v3 (GPLv3)",
"Operating System :: OS Independent",],)