-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathsetup.py
More file actions
42 lines (36 loc) · 1.24 KB
/
setup.py
File metadata and controls
42 lines (36 loc) · 1.24 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
40
41
42
from setuptools import setup
from pathlib import Path
long_description = (Path(__file__).parent / "README.md").read_text()
setup(
name="python-ntp",
version="1.0.0",
long_description=long_description,
long_description_content_type="text/markdown",
author="Jarek Siembida",
author_email="jarek.siembida@gmail.com",
license="ASF2.0",
url="https://github.com/jsiembida/python-ntp",
python_requires=">=3.5",
classifiers=[
"Intended Audience :: Developers",
"Intended Audience :: Information Technology",
"Intended Audience :: System Administrators",
"License :: OSI Approved :: Apache Software License",
"Operating System :: MacOS :: MacOS X",
"Operating System :: Microsoft :: Windows",
"Operating System :: POSIX :: BSD",
"Operating System :: POSIX :: Linux",
"Operating System :: Unix",
"Programming Language :: Python :: 3",
"Topic :: Software Development :: Libraries :: Python Modules",
"Topic :: System :: Networking :: Time Synchronization",
"Topic :: Utilities",
],
zip_safe=True,
py_modules=["ntp"],
entry_points={
"console_scripts": [
"ntp = ntp:main",
],
},
)