Skip to content

Commit 9baa1b4

Browse files
authored
Merge pull request #1 from Kalebu/production
Production
2 parents 4c23b93 + fb17d98 commit 9baa1b4

File tree

4 files changed

+35
-5
lines changed

4 files changed

+35
-5
lines changed

MANIFEST

+5
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
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

README.md

+1-2
Original file line numberDiff line numberDiff 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

requirements.txt

+15
Original file line numberDiff line numberDiff line change
@@ -1,24 +1,39 @@
11
appdirs==1.4.3
2+
bleach==3.3.0
23
CacheControl==0.12.6
34
certifi==2019.11.28
5+
cffi==1.14.5
46
chardet==3.0.4
57
colorama==0.4.3
68
contextlib2==0.6.0
9+
cryptography==3.4.4
710
distlib==0.3.0
811
distro==1.4.0
12+
docutils==0.16
913
html5lib==1.0.1
1014
idna==2.8
1115
ipaddr==2.2.0
16+
jeepney==0.6.0
17+
keyring==22.0.1
1218
lockfile==0.12.2
1319
msgpack==0.6.2
1420
packaging==20.3
1521
pep517==0.8.2
22+
pkginfo==1.7.0
1623
progress==1.5
24+
pycparser==2.20
1725
pycrypto==2.6.1
26+
Pygments==2.7.4
1827
pyparsing==2.4.6
1928
pytoml==0.1.21
29+
readme-renderer==28.0
2030
requests==2.22.0
31+
requests-toolbelt==0.9.1
2132
retrying==1.3.3
33+
rfc3986==1.4.0
34+
SecretStorage==3.3.1
2235
six==1.14.0
36+
tqdm==4.56.2
37+
twine==3.3.0
2338
urllib3==1.25.8
2439
webencodings==0.5.1

setup.py

+14-3
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,8 @@
22
from setuptools import setup
33

44
setup(
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",
@@ -15,5 +15,16 @@
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
)

0 commit comments

Comments
 (0)