-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathsetup.py
71 lines (66 loc) · 2.54 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
68
69
70
71
from setuptools import setup
import codecs
def read(filename):
return codecs.open(filename, encoding='utf-8').read()
long_description = '\n\n'.join([read('README'),
read('AUTHORS'),
read('CHANGES')])
setup(
name='lantz-sims',
version='0.6.0',
license='BSD 3-Clause License',
description='Simulation Library for Lantz',
long_description=long_description,
long_description_content_type='text/markdown',
url='https://github.com/lantzproject/lantz-sims',
author='Hernan E. Grecco',
author_email='[email protected]',
classifiers=[
'Development Status :: 4 - Beta',
'Intended Audience :: Developers',
'Intended Audience :: Science/Research',
'License :: OSI Approved :: BSD License',
'Operating System :: Microsoft :: Windows',
'Operating System :: POSIX',
'Operating System :: Unix',
'Operating System :: MacOS :: MacOS X',
'Programming Language :: Python',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3 :: Only',
'Topic :: Scientific/Engineering',
'Topic :: Scientific/Engineering :: Interface Engine/Protocol Translator',
'Topic :: Software Development :: Libraries',
'Topic :: Software Development :: Libraries :: Application Frameworks',
'Topic :: Software Development :: Libraries :: Python Modules',
'Topic :: Software Development :: User Interfaces',
'Topic :: Software Development :: Widget Sets',
'Topic :: System :: Hardware',
'Topic :: System :: Hardware :: Hardware Drivers',
'Topic :: System :: Logging',
'Topic :: System :: Monitoring',
'Topic :: Utilities',
],
keywords='lantz, lantz-sims, hardware interface, instrumentation framework, science, research',
packages=['lantz.sims'],
zip_safe=False,
python_requires='>=3.6, <4',
install_requires=[
'lantzdev>=0.6',
],
entry_points={
'console_scripts': [
'lantz-sims = lantz.sims.__main__:main',
],
'lantz_subcommands': [
'sims = lantz.sims.__main__:main',
],
},
test_suite='lantz.sims.testsuite.testsuite',
project_urls={
'Bug Reports': 'https://github.com/lantzproject/lantz-sims/issues',
'Source': 'https://github.com/lantzproject/lantz-sims/',
},
include_package_data=True,
options={'bdist_wheel': {'universal': '1'}},
)