File tree Expand file tree Collapse file tree 4 files changed +35
-5
lines changed
Expand file tree Collapse file tree 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
5656$ pypesa ~ python setup.py install
5757```
5858
59- - Using pip
60-
59+ - Using pip
6160```
6261
6362$~ pip install python-pesa
Original file line number Diff line number Diff line change 11appdirs == 1.4.3
2+ bleach == 3.3.0
23CacheControl == 0.12.6
34certifi == 2019.11.28
5+ cffi == 1.14.5
46chardet == 3.0.4
57colorama == 0.4.3
68contextlib2 == 0.6.0
9+ cryptography == 3.4.4
710distlib == 0.3.0
811distro == 1.4.0
12+ docutils == 0.16
913html5lib == 1.0.1
1014idna == 2.8
1115ipaddr == 2.2.0
16+ jeepney == 0.6.0
17+ keyring == 22.0.1
1218lockfile == 0.12.2
1319msgpack == 0.6.2
1420packaging == 20.3
1521pep517 == 0.8.2
22+ pkginfo == 1.7.0
1623progress == 1.5
24+ pycparser == 2.20
1725pycrypto == 2.6.1
26+ Pygments == 2.7.4
1827pyparsing == 2.4.6
1928pytoml == 0.1.21
29+ readme-renderer == 28.0
2030requests == 2.22.0
31+ requests-toolbelt == 0.9.1
2132retrying == 1.3.3
33+ rfc3986 == 1.4.0
34+ SecretStorage == 3.3.1
2235six == 1.14.0
36+ tqdm == 4.56.2
37+ twine == 3.3.0
2338urllib3 == 1.25.8
2439webencodings == 0.5.1
Original file line number Diff line number Diff line change 22from setuptools import setup
33
44setup (
5- name = 'pypesa' ,
6- version = '0.0.1' ,
5+ name = "python-pesa" ,
6+ version = "0.1" ,
77 description = 'Python package for Vodacom Mpesa API Integration' ,
88 url = 'https://github.com/Kalebu/pypesa' ,
99 author = "Jordan Kalebu" ,
1515 'pycryptodome'
1616 ],
1717
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+ ],
1930)
You can’t perform that action at this time.
0 commit comments