removed .idea from git tracking
added new logging dependency
This commit is contained in:
parent
b2a085eab3
commit
73284ceab8
9 changed files with 6 additions and 47 deletions
2
.gitignore
vendored
2
.gitignore
vendored
|
@ -1,4 +1,4 @@
|
||||||
|
.idea
|
||||||
# Created by https://www.toptal.com/developers/gitignore/api/python,pycharm,code
|
# Created by https://www.toptal.com/developers/gitignore/api/python,pycharm,code
|
||||||
# Edit at https://www.toptal.com/developers/gitignore?templates=python,pycharm,code
|
# Edit at https://www.toptal.com/developers/gitignore?templates=python,pycharm,code
|
||||||
|
|
||||||
|
|
8
.idea/.gitignore
generated
vendored
8
.idea/.gitignore
generated
vendored
|
@ -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
12
.idea/compLIB.iml
generated
|
@ -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>
|
|
5
.idea/inspectionProfiles/profiles_settings.xml
generated
5
.idea/inspectionProfiles/profiles_settings.xml
generated
|
@ -1,5 +0,0 @@
|
||||||
<component name="InspectionProjectProfileManager">
|
|
||||||
<settings>
|
|
||||||
<option name="PROJECT_PROFILE" />
|
|
||||||
</settings>
|
|
||||||
</component>
|
|
4
.idea/misc.xml
generated
4
.idea/misc.xml
generated
|
@ -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
8
.idea/modules.xml
generated
|
@ -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
6
.idea/vcs.xml
generated
|
@ -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>
|
|
6
setup.py
6
setup.py
|
@ -29,10 +29,12 @@ setuptools.setup(
|
||||||
license="proprietary",
|
license="proprietary",
|
||||||
install_requires=[
|
install_requires=[
|
||||||
"smbus",
|
"smbus",
|
||||||
"requests"
|
"requests",
|
||||||
|
"python-logstash-async"
|
||||||
],
|
],
|
||||||
setup_requires=[
|
setup_requires=[
|
||||||
"smbus",
|
"smbus",
|
||||||
"requests"
|
"requests",
|
||||||
|
"python-logstash-async"
|
||||||
]
|
]
|
||||||
)
|
)
|
||||||
|
|
Reference in a new issue