-
Notifications
You must be signed in to change notification settings - Fork 11
/
Copy pathsetup.py
67 lines (59 loc) · 1.87 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
58
59
60
61
62
63
64
65
66
67
#!/usr/bin/env python
# -*- coding: utf-8 -*-
from setuptools import setup
import os
import codecs
def read(filename):
return codecs.open(filename, encoding='utf-8').read()
long_description = '\n\n'.join([read('README.md'),
read('AUTHORS'),
read('CHANGES')])
__doc__ = long_description
setup(name='lantzdev',
version='0.5.3.dev0',
license='BSD',
description='Instrumentation framework',
long_description=long_description,
keywords='measurement control instrumentation science',
author='Hernan E. Grecco',
author_email='[email protected]',
url='https://github.com/lantzproject',
python_requires='>=3.6',
install_requires=['lantz-core>=0.5',
'lantz-drivers>=0.5',
'lantz-sims>=0.5',
],
extras_require={
'qt': [
'lantz-qt>=0.5',
],
'ino': [
'lantz-ino>=0.5',
],
'full': [
'lantz-qt>=0.5',
'lantz-ino>=0.5',
]
},
packages=['lantz'],
zip_safe=False,
platforms='any',
entry_points={
'console_scripts': [
'lantz = lantz.__main__:main'
],
},
classifiers=[
'Development Status :: 4 - Beta',
'Intended Audience :: Developers',
'Intended Audience :: Science/Research',
'License :: OSI Approved :: BSD License',
'Operating System :: MacOS :: MacOS X',
'Operating System :: Microsoft :: Windows',
'Operating System :: POSIX',
'Programming Language :: Python',
'Programming Language :: Python :: 3.6',
'Topic :: Scientific/Engineering',
'Topic :: Software Development :: Libraries'
],
)