pip freeze
This commit is contained in:
parent
fe4cf08221
commit
12fbf56cd4
31
requirements.txt
Normal file
31
requirements.txt
Normal file
@ -0,0 +1,31 @@
|
||||
asn1crypto==0.24.0
|
||||
certifi==2019.6.16
|
||||
cffi==1.12.3
|
||||
chardet==3.0.4
|
||||
cli-helpers==1.2.1
|
||||
configobj==5.0.6
|
||||
cryptography==2.7
|
||||
defusedxml==0.6.0
|
||||
idna==2.8
|
||||
jira==2.0.0
|
||||
marshmallow==2.19.5
|
||||
marshmallow-dataclass==0.6.6
|
||||
mypy-extensions==0.4.1
|
||||
oauthlib==3.0.1
|
||||
parse==1.12.0
|
||||
pbr==5.3.1
|
||||
pycparser==2.19
|
||||
PyJWT==1.7.1
|
||||
pytea==0.0
|
||||
python-dateutil==2.8.0
|
||||
pytodoist==2.1.3
|
||||
requests==2.22.0
|
||||
requests-oauthlib==1.2.0
|
||||
requests-toolbelt==0.9.1
|
||||
six==1.12.0
|
||||
swagger-client==1.0.0
|
||||
tabulate==0.8.3
|
||||
terminaltables==3.1.0
|
||||
typing-inspect==0.4.0
|
||||
urllib3==1.25.3
|
||||
wcwidth==0.1.7
|
@ -7,6 +7,7 @@ import sys
|
||||
import json
|
||||
import configparser
|
||||
import marshmallow.validate
|
||||
import re
|
||||
|
||||
from dataclasses import field
|
||||
from marshmallow_dataclass import dataclass
|
||||
@ -14,6 +15,7 @@ from typing import List, Optional
|
||||
from pytodoist import todoist
|
||||
from pprint import pprint
|
||||
from types import SimpleNamespace as Namespace
|
||||
from jira import JIRA
|
||||
|
||||
config = configparser.ConfigParser()
|
||||
config.read('./config.ini')
|
||||
@ -40,6 +42,8 @@ class GiteaIssue:
|
||||
title: str
|
||||
url: str
|
||||
|
||||
|
||||
|
||||
# args = parser.parse_args()
|
||||
# print(args.accumulate(args.integers))
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user