-
Notifications
You must be signed in to change notification settings - Fork 2
/
setup.py
59 lines (51 loc) · 1.85 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
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
import os
from importlib.machinery import SourceFileLoader
from setuptools import find_packages, setup
module_name = "jwt_rsa"
module = SourceFileLoader(
module_name,
os.path.join(module_name, "__init__.py"),
).load_module()
def load_requirements(fname):
""" load requirements from a pip requirements file """
line_iter = (line.strip() for line in open(fname))
return [line for line in line_iter if line and not line.startswith("#")]
setup(
name="pyjwt-rsa",
version=module.__version__,
author=module.__author__,
author_email=module.authors_email,
license=module.__license__,
description=module.package_info,
long_description=open("README.rst").read(),
platforms="all",
classifiers=[
"Intended Audience :: Developers",
"Natural Language :: Russian",
"Operating System :: MacOS",
"Operating System :: POSIX",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.5",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: Implementation :: CPython",
"Topic :: Security",
],
packages=find_packages(exclude=["tests"]),
install_requires=load_requirements("requirements.txt"),
extras_require={
"develop": load_requirements("requirements.dev.txt"),
},
entry_points={
"console_scripts": [
"jwt-rsa-keygen = {}.keygen:main".format(module_name),
"jwt-rsa-verify = {}.verify:main".format(module_name),
"jwt-rsa-issue= {}.issue:main".format(module_name),
],
},
python_requires=">=3.5, <4",
url="https://github.com/mosquito/pyjwt-rsa",
)