-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathsetup.py
More file actions
39 lines (36 loc) · 1.27 KB
/
Copy pathsetup.py
File metadata and controls
39 lines (36 loc) · 1.27 KB
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
#!/usr/bin/env python
from setuptools import setup, Command, Extension, find_packages
from setuptools.command.build_ext import build_ext
with open("README.rst", "r", encoding="utf-8") as f:
long_description = f.read()
setup(
name="kpclibpy",
#version="1.1.0",
description="KeePass command line application",
url="https://github.com/passxyz/KPCLibPy",
license="MIT",
author="Roger Ye",
author_email="shugaoye@yahoo.com",
install_requires=[
"pycparser==2.20",
"consolemd >= 0.5.1",
"importlib_metadata >= 3.6",
"pythonnet==2.5.2",
"python-nubia==0.2b5"],
long_description=long_description,
use_scm_version=True,
classifiers=[
"Development Status :: 5 - Production/Stable",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Programming Language :: C#",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Operating System :: Microsoft :: Windows",
"Operating System :: POSIX :: Linux",
"Operating System :: MacOS :: MacOS X",
],
)