forked from robertfasano/argent
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
27 lines (25 loc) · 946 Bytes
/
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
from setuptools import find_packages, setup
import os
def package_files(directory):
paths = []
for (path, directories, filenames) in os.walk(directory):
for filename in filenames:
paths.append(os.path.join('..', path, filename))
return paths
extra_files = package_files('argent')
setup(
name='argent',
version='1.0.0',
description='Interactive client/server/UI framework for ARTIQ experiments',
author='Robert Fasano',
author_email='[email protected]',
packages=find_packages(),
license='MIT',
long_description=open('README.md').read(),
package_data={'': extra_files},
install_requires=['scipy', 'pyyaml', 'click', 'requests', 'pandas', 'matplotlib', 'tqdm', 'flask', 'python-socketio', 'flask_socketio', 'influxdb_client', 'gevent', 'gevent-websocket', 'ipython'],
entry_points='''
[console_scripts]
argent_run=argent.server:main
''',
)