-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
58 lines (51 loc) · 2.06 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
45
46
47
48
49
50
51
52
53
54
55
56
57
58
import os
import runpy
from setuptools import setup, find_packages
def get_version_from_pyfile(version_file="spinvis/_version.py"):
file_globals = runpy.run_path(version_file)
return file_globals["__version__"]
def get_long_description_from_readme(readme_filename="README.md"):
long_description = None
if os.path.isfile(readme_filename):
with open(readme_filename, "r", encoding="utf-8") as readme_file:
long_description = readme_file.read()
return long_description
version = get_version_from_pyfile()
long_description = get_long_description_from_readme()
setup(
name="spinvis",
version=version,
packages=find_packages(),
python_requires="~=3.3",
install_requires=["gr", "numpy", "PyQt5", "scipy"],
entry_points={"console_scripts": ["spinvis = spinvis.spinVis_gui:main"]},
author="Jonas Mölle",
author_email="[email protected]",
description="A visualization program for spins.",
long_description=long_description,
long_description_content_type="text/markdown",
license="MIT",
url="https://github.com/sciapp/spinvis",
keywords=["scientific", "spins", "visualization"],
classifiers=[
"Development Status :: 4 - Beta",
"Intended Audience :: Science/Research",
"License :: OSI Approved :: MIT License",
"Natural Language :: English",
"Operating System :: MacOS",
"Operating System :: POSIX :: Linux",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3 :: Only",
"Programming Language :: Python :: 3.3",
"Programming Language :: Python :: 3.4",
"Programming Language :: Python :: 3.5",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Topic :: Scientific/Engineering",
"Topic :: Scientific/Engineering :: Physics",
"Topic :: Scientific/Engineering :: Visualization",
],
)