-
Notifications
You must be signed in to change notification settings - Fork 2
/
setup.py
25 lines (23 loc) · 831 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
from setuptools import setup
# To build a wheel: python setup.py bdist_wheel
setup(
name="eztw",
version="1.0.3",
description="Easy Python wrapper for ETW",
url="https://github.com/wild-strudel/eztw",
author="Uri Sternfeld",
packages=["eztw", "eztw.scripts"],
python_requires=">=3.10, <4",
install_requires=["pywin32"],
license="MIT",
classifiers=[
'License :: OSI Approved :: MIT License',
'Programming Language :: Python',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.10',
'Programming Language :: Python :: 3.11',
'Programming Language :: Python :: Implementation :: CPython',
'Operating System :: Microsoft :: Windows',
'Operating System :: Microsoft :: Windows :: Windows 10',
],
)