-
Notifications
You must be signed in to change notification settings - Fork 19
/
setup.py
51 lines (48 loc) · 1.91 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
# -*- coding: utf-8 -*-
import io
from setuptools import find_packages, setup
from Semi_ATE.STDF import __version__
# =============================================================================
# Use README.md for long description
# =============================================================================
with io.open('README.md', encoding='utf-8') as f:
LONG_DESCRIPTION = f.read()
setup(
name="Semi-ATE-STDF",
version=__version__,
description="Library to read/write STDF/ATDF files",
long_description=LONG_DESCRIPTION,
long_description_content_type='text/markdown',
author='Tom Hören',
maintainer='Semi-ATE',
maintainer_email='info@Semi-ATE.com',
url="https://github.com/Semi-ATE/STDF",
license="MIT",
keywords="Semiconductor ATE Automatic Test Equipment STDF",
platforms=["Windows", "Linux", "Mac OS-X"],
packages=find_packages(),
install_requires=[
#Issue 44 Disable temporary usage of pyqt to check if conda-forge feedstock will pass
# 'pyqt',
'xlsxwriter'
],
include_package_data=True,
classifiers=[
'License :: OSI Approved :: MIT License',
'Operating System :: MacOS',
'Operating System :: Microsoft :: Windows',
'Operating System :: POSIX :: Linux',
'Programming Language :: Python :: 3 :: Only',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3.8',
'Programming Language :: Python :: 3.9',
'Development Status :: 3 - Alpha',
'Intended Audience :: Education',
'Intended Audience :: Science/Research',
'Intended Audience :: Developers',
'Topic :: Software Development :: Libraries :: Python Modules',
'Topic :: Scientific/Engineering',
'Topic :: Scientific/Engineering :: Electronic Design Automation (EDA)',
'Topic :: Scientific/Engineering :: Interface Engine/Protocol Translator',
]
)