-
Notifications
You must be signed in to change notification settings - Fork 13
/
setup.py
41 lines (37 loc) · 1.05 KB
/
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
33
34
35
36
37
38
39
40
41
#!/usr/bin/env python3
import sys
from setuptools import setup
if sys.version_info < (3, 3):
raise RuntimeError(
"totp-cli requires python >= 3.3, but this python is %d.%d"
% sys.version_info[0:2]
)
setup(
name="totp",
description="A cli based TOTP app.",
long_description=open("README.rst").read(),
author="Hugo Osvaldo Barrera",
author_email="hugo@barrera.io",
url="https://github.com/WhyNotHugo/totp-cli/",
license="ISC",
packages=["totp"],
entry_points={
"console_scripts": [
"totp = totp.cli:run",
]
},
install_requires=[open("requirements.txt").readlines()],
use_scm_version={
"version_scheme": "post-release",
# 'write_to': 'totp/version.py',
},
setup_requires=["setuptools_scm"],
classifiers=[
"Development Status :: 4 - Beta",
"Environment :: Console",
"Environment :: Console :: Curses",
"License :: OSI Approved :: MIT License",
"Operating System :: POSIX",
"Topic :: Utilities",
],
)