-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathsetup.py
More file actions
30 lines (29 loc) · 788 Bytes
/
Copy pathsetup.py
File metadata and controls
30 lines (29 loc) · 788 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
29
30
from setuptools import setup, find_packages
from pathlib import Path
setup(
name='netmask',
version='0.1.0',
author='Joseph',
author_email='josephdove@proton.me',
description='A TCP/UDP self-hostable reverse proxy server that supports IPv4 and IPv6',
long_description=(Path(__file__).parent / "README.md").read_text(),
long_description_content_type='text/markdown',
classifiers=[
'Programming Language :: Python :: 3.6',
'License :: OSI Approved :: MIT License',
'Operating System :: OS Independent',
],
packages=find_packages(
include=[
"netmask",
"netmask.*"
]
),
entry_points={
"console_scripts": [
"netmaskc = netmask.netmaskc:main",
"netmasks = netmask.netmasks:main",
]
},
python_requires='>=3.6',
)