-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #19 from FelixLuciano/setuptools
Setuptools
- Loading branch information
Showing
25 changed files
with
283 additions
and
175 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
File renamed without changes
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,85 +1,9 @@ | ||
argon2-cffi==21.3.0 | ||
argon2-cffi-bindings==21.2.0 | ||
asttokens==2.0.5 | ||
attrs==21.4.0 | ||
backcall==0.2.0 | ||
beautifulsoup4==4.11.1 | ||
bleach==5.0.1 | ||
cachetools==5.2.0 | ||
certifi==2022.6.15 | ||
cffi==1.15.1 | ||
charset-normalizer==2.1.0 | ||
colorama==0.4.5 | ||
cssutils==2.5.1 | ||
debugpy==1.6.2 | ||
decorator==5.1.1 | ||
defusedxml==0.7.1 | ||
entrypoints==0.4 | ||
executing==0.9.0 | ||
fastjsonschema==2.16.1 | ||
google-api-core==2.8.2 | ||
google-api-python-client==2.54.0 | ||
google-auth==2.9.1 | ||
google-auth-httplib2==0.1.0 | ||
google-auth-oauthlib==0.5.2 | ||
googleapis-common-protos==1.56.4 | ||
httplib2==0.20.4 | ||
idna==3.3 | ||
ipykernel==6.15.1 | ||
ipython==8.4.0 | ||
ipython-genutils==0.2.0 | ||
ipywidgets==7.7.1 | ||
jedi==0.18.1 | ||
Jinja2==3.1.2 | ||
jsonschema==4.7.2 | ||
jupyter-client==7.3.4 | ||
jupyter-core==4.11.1 | ||
jupyterlab-pygments==0.2.2 | ||
jupyterlab-widgets==1.1.1 | ||
MarkupSafe==2.1.1 | ||
matplotlib-inline==0.1.3 | ||
mistune==0.8.4 | ||
nbclient==0.6.6 | ||
nbconvert==6.5.0 | ||
nbformat==5.4.0 | ||
nest-asyncio==1.5.5 | ||
notebook==6.4.12 | ||
numpy==1.23.1 | ||
oauthlib==3.2.0 | ||
packaging==21.3 | ||
pandas==1.4.3 | ||
pandocfilters==1.5.0 | ||
parso==0.8.3 | ||
pickleshare==0.7.5 | ||
prometheus-client==0.14.1 | ||
prompt-toolkit==3.0.30 | ||
protobuf==4.21.3 | ||
psutil==5.9.1 | ||
pure-eval==0.2.2 | ||
pyasn1==0.4.8 | ||
pyasn1-modules==0.2.8 | ||
pycparser==2.21 | ||
Pygments==2.12.0 | ||
pyparsing==3.0.9 | ||
pyrsistent==0.18.1 | ||
python-dateutil==2.8.2 | ||
pytz==2022.1 | ||
pywin32==304 | ||
pywinpty==2.0.6 | ||
pyzmq==23.2.0 | ||
requests==2.28.1 | ||
requests-oauthlib==1.3.1 | ||
rsa==4.9 | ||
Send2Trash==1.8.0 | ||
six==1.16.0 | ||
soupsieve==2.3.2.post1 | ||
stack-data==0.3.0 | ||
terminado==0.15.0 | ||
tinycss2==1.1.1 | ||
tornado==6.2 | ||
traitlets==5.3.0 | ||
uritemplate==4.1.1 | ||
urllib3==1.26.10 | ||
wcwidth==0.2.5 | ||
webencodings==0.5.1 | ||
widgetsnbextension==3.6.1 | ||
google-api-python-client | ||
google-auth-httplib2 | ||
google-auth-oauthlib | ||
jinja2 | ||
beautifulsoup4 | ||
cssutils | ||
pandas | ||
ipykernel | ||
ipywidgets |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,22 @@ | ||
from setuptools import setup | ||
|
||
|
||
def parse_requirements(filename): | ||
lines = (line.strip() for line in open(filename)) | ||
|
||
return [line for line in lines if line and not line.startswith("#")] | ||
|
||
|
||
if __name__ == "__main__": | ||
setup( | ||
name="Pypers", | ||
version="1.0.0", | ||
description="Mail templating and sending with Jupyter", | ||
url="https://github.com/FelixLuciano/pypers", | ||
author="Luciano Felix", | ||
packages=["pypers"], | ||
package_dir={"pypers": "src"}, | ||
package_data={"pypers": ["data/*"]}, | ||
license="MIT", | ||
install_requires=parse_requirements("requirements.txt"), | ||
) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,22 +1,21 @@ | ||
import logging | ||
import warnings | ||
if __name__ != "__main__": | ||
import logging | ||
import warnings | ||
|
||
import cssutils | ||
import cssutils | ||
|
||
from .Create import Create as create | ||
from .Google import Google as google | ||
from .Page import Page as page | ||
from .Preview import Preview as preview | ||
from .Send import Send as send | ||
from .Workspace import Workspace as workspace | ||
from .Create import Create as create | ||
from .Google import Google as google | ||
from .Page import Page as page | ||
from .Preview import Preview as preview | ||
from .Send import Send as send | ||
from .Workspace import Workspace as workspace | ||
|
||
|
||
workspace.check_vsc_ipynb_file() | ||
warnings.simplefilter(action="ignore") | ||
|
||
warnings.simplefilter(action='ignore') | ||
cssutils.ser.prefs.keepComments = False | ||
cssutils.ser.prefs.lineSeparator = "" | ||
cssutils.ser.prefs.propertyNameSpacer = "" | ||
|
||
cssutils.ser.prefs.keepComments = False | ||
cssutils.ser.prefs.lineSeparator = "" | ||
cssutils.ser.prefs.propertyNameSpacer = "" | ||
|
||
cssutils.log.setLevel(logging.CRITICAL) | ||
cssutils.log.setLevel(logging.CRITICAL) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
File renamed without changes.
Oops, something went wrong.