-
Notifications
You must be signed in to change notification settings - Fork 12
Expand file tree
/
Copy pathsetup.py
More file actions
51 lines (43 loc) · 1.58 KB
/
setup.py
File metadata and controls
51 lines (43 loc) · 1.58 KB
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
#!/usr/bin/env python
# -*- coding: utf-8 -*-
from setuptools import setup, find_packages
import os.path
import sys
sys.path.insert(0, os.path.abspath('.'))
from exopy_hqc_legacy.version import __version__
def long_description():
"""Read the project description from the README file.
"""
with open(os.path.join(os.path.dirname(__file__), 'README.rst')) as f:
return f.read()
setup(
name='exopy_hqc_legacy',
description='Transitional package between HQCMeas and Exopy',
long_description=long_description(),
version=__version__,
author='see AUTHORS',
author_email='m.dartiailh@gmail.com',
url='https://github.com/exopy/exopy_hqc_legacy',
download_url='https://github.com/exopy/exopy_hqc_legacy/tarball/master',
keywords='experiment automation GUI',
license='BSD',
classifiers=[
'Development Status :: 3 - Alpha',
'License :: OSI Approved :: BSD License',
'Natural Language :: English',
'Operating System :: OS Independent',
'Topic :: Scientific/Engineering :: Physics',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3.8',
],
zip_safe=False,
packages=find_packages(exclude=['tests', 'tests.*']),
package_data={'': ['*.enaml']},
python_requires='>=3.6',
setup_requires=['setuptools'],
install_requires=['exopy', 'pyvisa', 'h5py>=2.5.0', 'numpy', 'pyclibrary'],
entry_points={
'exopy_package_extension':
'exopy_hqc_legacy = exopy_hqc_legacy:list_manifests'}
)