Skip to content
This repository was archived by the owner on Apr 1, 2026. It is now read-only.

Commit 1383ba8

Browse files
Create version.py
1 parent fa2e286 commit 1383ba8

1 file changed

Lines changed: 49 additions & 0 deletions

File tree

PythonGUI_apps/version.py

Lines changed: 49 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,49 @@
1+
from __future__ import absolute_import, division, print_function
2+
from os.path import join as pjoin
3+
4+
# Format expected by setup.py and doc/source/conf.py: string of form "X.Y.Z"
5+
_version_major = 0
6+
_version_minor = 1
7+
_version_micro = '' # use '' for first of series, number for 1 and above
8+
_version_extra = 'dev0'
9+
# _version_extra = '' # Uncomment this for full releases
10+
11+
# Construct full version string from these.
12+
_ver = [_version_major, _version_minor]
13+
if _version_micro:
14+
_ver.append(_version_micro)
15+
if _version_extra:
16+
_ver.append(_version_extra)
17+
18+
__version__ = '.'.join(map(str, _ver))
19+
20+
CLASSIFIERS = ["Development Status :: 3 - Alpha",
21+
"Environment :: Console",
22+
"Intended Audience :: Science/Research",
23+
"License :: OSI Approved :: MIT License",
24+
"Operating System :: OS Independent",
25+
"Programming Language :: Python",
26+
"Topic :: Scientific/Engineering"]
27+
28+
# Description should be a one-liner:
29+
description = "GLabViz: Data Visualization and Analysis Tool"
30+
# Long description will go up on the pypi page
31+
# long_description = """
32+
33+
NAME = "glabviz"
34+
MAINTAINER = "Sarthak"
35+
MAINTAINER_EMAIL = "jariwala@uw.edu"
36+
DESCRIPTION = description
37+
# LONG_DESCRIPTION = long_description
38+
URL = "https://github.com/SarthakJariwala/Python_GUI_apps"
39+
DOWNLOAD_URL = ""
40+
LICENSE = "MIT"
41+
AUTHOR = "SARTHAK"
42+
AUTHOR_EMAIL = "jariwala@uw.edu"
43+
PLATFORMS = "OS Independent"
44+
MAJOR = _version_major
45+
MINOR = _version_minor
46+
MICRO = _version_micro
47+
VERSION = __version__
48+
# PACKAGE_DATA = {'defectfinder': [pjoin('data', '*')]}
49+
REQUIRES = ["pyqtgraph", "numpy", "matplotlib", "ctypes", "lmfit", "seabreeze", "pyusb"]

0 commit comments

Comments
 (0)