-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathsetup.py
34 lines (29 loc) · 1.13 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
import sys
if sys.version_info[0] < 3:
sys.exit('Sorry, Python < 3.x is not supported')
# Try using setuptools first, if it's installed
from setuptools import setup, find_packages
packages = ["pytc_gui",
"pytc_gui/dialogs",
"pytc_gui/widgets",
"pytc_gui/widgets/experiment_box",
"pytc_gui/widgets/experiment_box/experiment_dialog"]
# Need to add all dependencies to setup as we go!
setup(name='pytc-gui',
packages=packages,
version='1.2.2',
description="PyQt5 GUI for pytc API",
long_description=open("README.rst").read(),
author='Hiranmayi Duvvuri',
author_email='[email protected]',
url='https://github.com/harmslab/pytc-gui',
download_url='https://github.com/harmslab/pytc-gui/tarball/1.2.2',
zip_safe=False,
install_requires=["pytc-fitter>=1.1.5","seaborn","pyqt5"],
package_data={"pytc_gui":["*.png","widgets/experiment_box/icons/*.png"]},
classifiers=['Programming Language :: Python'],
entry_points = {
'gui_scripts': [
'pytc-gui = pytc_gui.main_window:main'
]
})