Skip to content

Commit 2cc5afe

Browse files
committed
v2.1.0
1 parent 54a564d commit 2cc5afe

11 files changed

+61
-11
lines changed

LICENSE renamed to LICENSE.txt

File renamed without changes.

MANIFEST.in

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
include README.md
2-
include LICENSE
2+
include LICENSE.txt
33
include examples/*
44
include .vscode/*
55
include github_com/*

dist/pyforchange-0.1.tar.gz

-3.97 KB
Binary file not shown.

dist/pyforchange-0.2.tar.gz

-4.81 KB
Binary file not shown.

dist/pyforchange-2.0.1.tar.gz

-5.5 KB
Binary file not shown.

dist/pyforchange-2.0.3.tar.gz

8.9 KB
Binary file not shown.

pyforchange.egg-info/PKG-INFO

+6-6
Original file line numberDiff line numberDiff line change
@@ -3,10 +3,10 @@ Name: pyforchange
33
Version: 2.0.3
44
Summary: pythonforchange.github.io
55
Home-page: https://github.com/PythonForChange/pyforchange
6-
Author: Python For Change
6+
Author: Emmanuel Norambuena, Python For Change
77
Author-email: [email protected]
88
License: MIT
9-
Download-URL: https://github.com/PythonForChange/pyforchange/archive/refs/tags/v2.0.3.tar.gz
9+
Download-URL: https://github.com/PythonForChange/pyforchange/archive/refs/tags/v2.1.0.tar.gz
1010
Description: Python For Change
1111
=================
1212

@@ -53,9 +53,8 @@ Description: Python For Change
5353

5454
- **Emmanuel Norambuena** - *initial work* -
5555
[Eanorambuena](https://github.com/eanorambuena)
56-
- **Community** - *contributing*
57-
- **Andrés Villanueva** - *this web page is based on the README made
58-
by him* - [Villanuevand](https://github.com/Villanuevand)
56+
- **Héctor Costa** - *Pyfoch is based on his work (2015-2021 © Héctor Costa Guzmán (Licencia CC BY 4.)* - [View his webpage](https://docs.hektorprofe.net/python/interfaces-graficas-con-tkinter/editor-de-texto/)
57+
- **Andrés Villanueva** - *this web page is based on the README made by him* - [Villanuevand](https://github.com/Villanuevand)
5958
- **Just the Docs** - *this site uses their documentation theme for
6059
Jekyll* - [View in
6160
Github](https://github.com/pmarsceill/just-the-docs)
@@ -84,12 +83,13 @@ Description: Python For Change
8483

8584
⌨️ with ❤️ by [Eanorambuena](https://github.com/eanorambuena) 😊
8685

87-
Keywords: covid,qiskit,language,plot,files
86+
Keywords: quantum,natural quantum script,nqs,pyforchange,console,covid,qiskit,language,plot,files
8887
Platform: UNKNOWN
8988
Classifier: Programming Language :: Python :: 3
9089
Classifier: Intended Audience :: Developers
9190
Classifier: License :: OSI Approved :: MIT License
9291
Classifier: Natural Language :: English
9392
Classifier: Operating System :: OS Independent
9493
Classifier: Topic :: Text Processing :: Markup
94+
Requires-Python: >=3
9595
Description-Content-Type: text/markdown

pyforchange.egg-info/SOURCES.txt

+37-1
Original file line numberDiff line numberDiff line change
@@ -1,16 +1,52 @@
1-
LICENCE.txt
1+
LICENSE.txt
22
MANIFEST.in
33
README.md
44
README.rst
55
setup.cfg
66
setup.py
7+
.vscode/launch.json
8+
.vscode/tasks.json
9+
examples/index.html
10+
examples/main.py
11+
examples/template.html
12+
github_com/LICENSE
13+
github_com/README.md
14+
github_com/__init__.py
715
pyforchange/__init__.py
816
pyforchange/cell.py
917
pyforchange/covidplot.py
1018
pyforchange.egg-info/PKG-INFO
1119
pyforchange.egg-info/SOURCES.txt
1220
pyforchange.egg-info/dependency_links.txt
21+
pyforchange.egg-info/requires.txt
1322
pyforchange.egg-info/top_level.txt
23+
pyforchange/egg/__init__.py
24+
pyforchange/egg/app.py
25+
pyforchange/egg/library/__init__.py
26+
pyforchange/egg/library/repos.py
27+
pyforchange/egg/resources/__init__.py
28+
pyforchange/egg/resources/auth.py
29+
pyforchange/egg/resources/console.py
30+
pyforchange/egg/resources/constants.py
31+
pyforchange/egg/resources/extensions.py
32+
pyforchange/egg/resources/help.py
33+
pyforchange/egg/resources/modules.py
34+
pyforchange/egg/resources/parser.py
35+
pyforchange/egg/resources/utils.py
36+
pyforchange/news/__init__.py
37+
pyforchange/news/app.py
38+
pyforchange/news/config.py
39+
pyforchange/news/news.py
40+
pyforchange/nqs/__init__.py
41+
pyforchange/nqs/core/__init__.py
42+
pyforchange/nqs/core/core.py
43+
pyforchange/nqs/core/functions.py
44+
pyforchange/nqs/core/quantum.py
45+
pyforchange/nqs/core/reader.py
46+
pyforchange/nqs/developer/__init__.py
47+
pyforchange/nqs/developer/app.py
48+
pyforchange/nqs/developer/run.py
49+
pyforchange/nqs/developer/write.py
1450
pyforchange/pfcf/__init__.py
1551
pyforchange/pfcf/code.py
1652
pyforchange/pfcf/files.py

pyforchange.egg-info/requires.txt

+9
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
pandas
2+
os
3+
time
4+
json
5+
math
6+
sys
7+
subprocess
8+
pip
9+
bs4

pyforchange.egg-info/top_level.txt

+1
Original file line numberDiff line numberDiff line change
@@ -1 +1,2 @@
1+
github_com
12
pyforchange

setup.py

+7-3
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,12 @@
11
from setuptools import setup, find_packages
22
import pathlib
33
HERE = pathlib.Path(__file__).parent
4-
README1 = (HERE / 'README.md').read_text()
5-
README2 = (HERE / 'README.rst').read_text()
4+
filename=HERE/'README.md'
5+
f=open(filename, 'r', encoding="utf8", errors="ignore")
6+
README1=f.read()
7+
f.close()
8+
# README1 = (filename).read_text()
9+
# README2 = (HERE/'README.rst').read_text()
610

711
setup(
812
name = 'pyforchange',
@@ -14,7 +18,7 @@
1418
description ="pythonforchange.github.io",
1519
long_description=README1,
1620
long_description_content_type='text/markdown',
17-
author = 'Python For Change',
21+
author = 'Emmanuel Norambuena, Python For Change',
1822
author_email = '[email protected]',
1923
license="MIT",
2024
url = 'https://github.com/PythonForChange/pyforchange', # use the URL to the github repo

0 commit comments

Comments
 (0)