-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
40 lines (37 loc) · 1.17 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
import setuptools
with open("README.md", "r", encoding="utf-8") as fh:
long_description = fh.read()
setuptools.setup(
name="pyddt",
version="0.0.3",
author="Rafaela Felix",
author_email="rafaelafelixp@usp.br",
description="Tool for planning and analyzing XRDD experiments.",
long_description=long_description,
long_description_content_type="text/markdown",
url="https://github.com/rafaela-felix/pyddt/",
keywords="x-ray diffraction dynamic-diffraction renninger-scan",
license="GNU General Public License (GPL)",
classifiers=[
"Programming Language :: Python :: 3",
"License :: OSI Approved :: GNU General Public License (GPL)",
"Operating System :: OS Independent",
],
package_dir={"": "pyddt"},
packages=setuptools.find_packages(where="pyddt"),
install_requires=[
'matplotlib>=3.5.1',
'numpy>=1.22.4',
'pandas>=1.4.1',
'plotly>=5.6.0',
'scipy>=1.8.0',
'tqdm>=4.63.1',
'lmfit>=1.0.3',
'ipykernel',
'ase>=3.22.1',
'nglview>=3.0.3',
'pymatgen>=2022.5.26',
'scikit-learn'
],
python_requires=">=3.8",
)