-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
28 lines (27 loc) · 907 Bytes
/
setup.py
File metadata and controls
28 lines (27 loc) · 907 Bytes
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
from setuptools import setup, find_packages
setup(
name='MemLib',
version='1.7.6',
packages=find_packages(),
include_package_data=True,
url='https://github.com/Zvendson/MemLib',
license='MIT',
author='Zvendson',
description='Library to interact with the Windows API and ctypes.',
long_description=open("README.md", encoding="utf-8").read(),
long_description_content_type="text/markdown",
python_requires='>=3.10',
install_requires=[
'psutil~=5.9.6',
'pykeepass~=4.1.0',
],
classifiers=[
'Programming Language :: Python :: 3',
'Operating System :: Microsoft :: Windows',
'License :: OSI Approved :: MIT License',
'Development Status :: 4 - Beta',
'Intended Audience :: Developers',
'Topic :: Software Development :: Libraries',
],
keywords='windows api ctypes memory keepass',
)