-
Notifications
You must be signed in to change notification settings - Fork 11
/
Copy pathsetup.py
executable file
·32 lines (30 loc) · 979 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
26
27
28
29
30
31
32
#!/usr/bin/env python3.8
import setuptools
from datetime import datetime
with open("README.md", "r") as fh:
long_description = fh.read()
setuptools.setup(
name="npkPy",
version=f"{(datetime.now()).strftime('%Y.%m.%d.%H.%M')}",
description="npkPy is an unpacker tool for MikroTiks custom npk container format",
author='botlabsDev',
author_email='[email protected]',
long_description=long_description,
long_description_content_type="text/markdown",
url="https://github.com/botlabsDev/npkpy",
packages=setuptools.find_packages(),
python_requires='>=3.6',
classifiers=[
"Programming Language :: Python :: 3.6",
"License :: OSI Approved :: GNU Affero General Public License v3",
"Operating System :: OS Independent",
],
entry_points={
'console_scripts': [
"npkpy=npkpy.main:main",
# "npkDownloader=npkpy.download:main",
],
},
install_requires=[
],
)