-
Notifications
You must be signed in to change notification settings - Fork 1
/
setup.py
57 lines (54 loc) · 1.69 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
import setuptools
import os
pkg_name = 'optoConfig96'
here = os.path.abspath(os.path.dirname(__file__))
with open(os.path.join(here, pkg_name, "version.py"), "r") as f:
for line in f.readlines():
if line.startswith("__version__"):
version = line.split("'")[1]
break
with open('README_PyPI.md', 'r') as fh:
long_description = fh.read()
setuptools.setup(
name=pkg_name,
version=version,
author='Oliver Thomas',
author_email='oliver.thomas@sgbm.uni-freiburg.de',
description='A GUI tool to configure optoPlate96 experiments',
long_description=long_description,
long_description_content_type='text/markdown',
url='https://github.com/WeberSynBioLab/optoConfig-96',
packages=setuptools.find_packages(),
classifiers=[
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3.8',
'Programming Language :: Python :: 3.9',
'Operating System :: OS Independent',
],
keywords='biology optogenetics optoplate gui',
install_requires=[
'traits>=6.2.0',
'traitsui>=7.2.1',
'PyQt5>=5.15.4,<=5.15.7',
'pygments>=2.9.0',
'numpy>=1.21.1,<=1.23.5',
'matplotlib>=3.4.2'
],
extras_require = {
'build': [
"pyinstaller>=5.7.0"
]
},
python_requires='>=3.7,<3.10',
package_data={
pkg_name: [
'resources/appicon.png',
'resources/arduino_template.cpp',
'resources/docs/*',
'resources/docs/*/*',
'resources/docs/*/*/*',
'resources/examples/*',
'resources/LICENSE*'],
}
)