removed .idea from git tracking

added new logging dependency
This commit is contained in:
joel 2021-01-16 21:21:00 +01:00
parent b2a085eab3
commit 73284ceab8
9 changed files with 6 additions and 47 deletions

4
.gitignore vendored
View file

@ -1,4 +1,4 @@
.idea
# Created by https://www.toptal.com/developers/gitignore/api/python,pycharm,code
# Edit at https://www.toptal.com/developers/gitignore?templates=python,pycharm,code
@ -249,4 +249,4 @@ dmypy.json
# profiling data
.prof
# End of https://www.toptal.com/developers/gitignore/api/python,pycharm,code
# End of https://www.toptal.com/developers/gitignore/api/python,pycharm,code

8
.idea/.gitignore generated vendored
View file

@ -1,8 +0,0 @@
# Default ignored files
/shelf/
/workspace.xml
# Datasource local storage ignored files
/dataSources/
/dataSources.local.xml
# Editor-based HTTP Client requests
/httpRequests/

12
.idea/compLIB.iml generated
View file

@ -1,12 +0,0 @@
<?xml version="1.0" encoding="UTF-8"?>
<module type="PYTHON_MODULE" version="4">
<component name="NewModuleRootManager">
<content url="file://$MODULE_DIR$">
<sourceFolder url="file://$MODULE_DIR$/compLib" isTestSource="false" />
</content>
<orderEntry type="jdk" jdkName="Python 3.8 (compLIB)" jdkType="Python SDK" />
<orderEntry type="sourceFolder" forTests="false" />
<orderEntry type="library" name="R User Library" level="project" />
<orderEntry type="library" name="R Skeletons" level="application" />
</component>
</module>

View file

@ -1,5 +0,0 @@
<component name="InspectionProjectProfileManager">
<settings>
<option name="PROJECT_PROFILE" />
</settings>
</component>

4
.idea/misc.xml generated
View file

@ -1,4 +0,0 @@
<?xml version="1.0" encoding="UTF-8"?>
<project version="4">
<component name="ProjectRootManager" version="2" project-jdk-name="Python 3.8 (compLIB)" project-jdk-type="Python SDK" />
</project>

8
.idea/modules.xml generated
View file

@ -1,8 +0,0 @@
<?xml version="1.0" encoding="UTF-8"?>
<project version="4">
<component name="ProjectModuleManager">
<modules>
<module fileurl="file://$PROJECT_DIR$/.idea/compLIB.iml" filepath="$PROJECT_DIR$/.idea/compLIB.iml" />
</modules>
</component>
</project>

6
.idea/vcs.xml generated
View file

@ -1,6 +0,0 @@
<?xml version="1.0" encoding="UTF-8"?>
<project version="4">
<component name="VcsDirectoryMappings">
<mapping directory="$PROJECT_DIR$" vcs="Git" />
</component>
</project>

View file

View file

@ -29,10 +29,12 @@ setuptools.setup(
license="proprietary",
install_requires=[
"smbus",
"requests"
"requests",
"python-logstash-async"
],
setup_requires=[
"smbus",
"requests"
"requests",
"python-logstash-async"
]
)