-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
33 lines (30 loc) · 955 Bytes
/
setup.py
File metadata and controls
33 lines (30 loc) · 955 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
31
32
33
"""Setup for epochis CLI
References:
https://packaging.python.org/tutorials/packaging-projects/
https://chriswarrick.com/blog/2014/09/15/python-apps-the-right-way-entry_points-and-scripts/
"""
import setuptools
with open("README.md", "r") as fh:
long_description = fh.read()
setuptools.setup(
name="epochis",
version="1.1.2",
author="Rob Reeves",
author_email="",
description="A CLI to convert offsets from epoch to human readable dates",
long_description=long_description,
long_description_content_type="text/markdown",
url="https://github.com/robreeves/epochis",
packages=setuptools.find_packages(),
entry_points={
'console_scripts': [
'epochis = epochis.__main__:main'
]
},
classifiers=[
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
],
python_requires='>=3.7',
)