-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
26 lines (25 loc) · 733 Bytes
/
Copy pathsetup.py
File metadata and controls
26 lines (25 loc) · 733 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
from glob import glob
from pathlib import Path
from setuptools import setup, find_packages
setup(
name="dllproxy",
version="1.0.2",
description="Generate And Build a Windows DLL Proxy For Any DLL",
license="MIT",
long_description=Path("README.md").read_text(),
long_description_content_type="text/markdown",
author="Gil Alpert",
author_email="alpertgil@gmail.com",
url="https://github.com/gilgoolon/dllproxy",
packages=find_packages(),
install_requires=[
"pefile"
],
entry_points={
"console_scripts": [
"dllproxy-generate = dllproxy:dllproxy_generate"
]
},
include_package_data=True,
package_data={"dllproxy": ["template/**/**"]}
)