-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathsetup.py
More file actions
executable file
·32 lines (29 loc) · 863 Bytes
/
setup.py
File metadata and controls
executable file
·32 lines (29 loc) · 863 Bytes
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
#!/usr/bin/env python
from os.path import join as pjoin
from setuptools import setup, find_packages
from glob import glob
from smallsocc.version import VERSION_FULL
package_name = 'smallsocc'
setup(name='SmallSOCC',
version=VERSION_FULL,
description='GUI for controlling Sparse Orthogonal Collimator through serial interface',
author='Ryan Neph',
author_email='neph320@gmail.com',
url='https://github.com/ryanneph/soc_control',
packages=[package_name,],
entry_points={
'gui_scripts': ['{0} = {0}.gui:start_gui'.format(package_name)],
},
package_data={
package_name: [
'logging.conf.json',
'*.qml',
'*.js'
],
},
install_requires=[
'PyOpenGL>=3.1.0',
'PyQt5 >=5.12',
'pyserial>=3.4'
],
)