File tree 4 files changed +35
-5
lines changed
4 files changed +35
-5
lines changed Original file line number Diff line number Diff line change
1
+ # file GENERATED by distutils, do NOT edit
2
+ setup.py
3
+ pypesa/__init__.py
4
+ pypesa/mpesa_exceptions.py
5
+ pypesa/service_urls.py
Original file line number Diff line number Diff line change @@ -56,8 +56,7 @@ $~ cd pypesa
56
56
$ pypesa ~ python setup.py install
57
57
```
58
58
59
- - Using pip
60
-
59
+ - Using pip
61
60
```
62
61
63
62
$~ pip install python-pesa
Original file line number Diff line number Diff line change 1
1
appdirs == 1.4.3
2
+ bleach == 3.3.0
2
3
CacheControl == 0.12.6
3
4
certifi == 2019.11.28
5
+ cffi == 1.14.5
4
6
chardet == 3.0.4
5
7
colorama == 0.4.3
6
8
contextlib2 == 0.6.0
9
+ cryptography == 3.4.4
7
10
distlib == 0.3.0
8
11
distro == 1.4.0
12
+ docutils == 0.16
9
13
html5lib == 1.0.1
10
14
idna == 2.8
11
15
ipaddr == 2.2.0
16
+ jeepney == 0.6.0
17
+ keyring == 22.0.1
12
18
lockfile == 0.12.2
13
19
msgpack == 0.6.2
14
20
packaging == 20.3
15
21
pep517 == 0.8.2
22
+ pkginfo == 1.7.0
16
23
progress == 1.5
24
+ pycparser == 2.20
17
25
pycrypto == 2.6.1
26
+ Pygments == 2.7.4
18
27
pyparsing == 2.4.6
19
28
pytoml == 0.1.21
29
+ readme-renderer == 28.0
20
30
requests == 2.22.0
31
+ requests-toolbelt == 0.9.1
21
32
retrying == 1.3.3
33
+ rfc3986 == 1.4.0
34
+ SecretStorage == 3.3.1
22
35
six == 1.14.0
36
+ tqdm == 4.56.2
37
+ twine == 3.3.0
23
38
urllib3 == 1.25.8
24
39
webencodings == 0.5.1
Original file line number Diff line number Diff line change 2
2
from setuptools import setup
3
3
4
4
setup (
5
- name = 'pypesa' ,
6
- version = '0.0.1' ,
5
+ name = "python-pesa" ,
6
+ version = "0.1" ,
7
7
description = 'Python package for Vodacom Mpesa API Integration' ,
8
8
url = 'https://github.com/Kalebu/pypesa' ,
9
9
author = "Jordan Kalebu" ,
15
15
'pycryptodome'
16
16
],
17
17
18
- python_requires = '>=3.6'
18
+ include_package_data = True ,
19
+ python_requires = ">=3.6" ,
20
+ classifiers = [
21
+ "Development Status :: 3 - Alpha" ,
22
+ "Intended Audience :: Developers" ,
23
+ "Topic :: Software Development :: Build Tools" ,
24
+ "License :: OSI Approved :: MIT License" ,
25
+ "Programming Language :: Python :: 3.6" ,
26
+ "Programming Language :: Python :: 3.7" ,
27
+ "Programming Language :: Python :: 3.8" ,
28
+ "Programming Language :: Python :: 3.9" ,
29
+ ],
19
30
)
You can’t perform that action at this time.
0 commit comments