-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
88 lines (75 loc) · 2.34 KB
/
setup.py
File metadata and controls
88 lines (75 loc) · 2.34 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
from setuptools import setup, Command
from unittest import TextTestRunner, TestLoader
from glob import glob
from os.path import splitext, basename, join as pjoin
try:
from os.path import walk
except ImportError:
from os import walk
import os
class TestCommand(Command):
user_options = []
def initialize_options(self):
self._dir = os.getcwd()
def finalize_options(self):
pass
def run(self):
'''
Finds all the tests modules in tests/, and runs them.
'''
testfiles = []
for t in glob(pjoin(self._dir, 'tests', '*.py')):
if not t.endswith('__init__.py'):
testfiles.append('.'.join(
['tests', splitext(basename(t))[0]])
)
import sys
ROOT = os.path.dirname(os.getcwd())
PAYDUNYA_LIBS = os.path.join(ROOT, "paydunya")
sys.path.append(PAYDUNYA_LIBS)
tests = TestLoader().loadTestsFromNames(testfiles)
t = TextTestRunner(verbosity=1)
t.run(tests)
class CleanCommand(Command):
"""Recursively Delete all compile python modules"""
user_options = []
def initialize_options(self):
self._clean_me = []
for root, dirs, files in os.walk('.'):
for f in files:
if f.endswith('.pyc'):
self._clean_me.append(pjoin(root, f))
def finalize_options(self):
pass
def run(self):
for clean_me in self._clean_me:
try:
os.unlink(clean_me)
except:
pass
def readme(filename='README.rst'):
with open('README.rst') as f:
text = f.read()
f.close()
return text
setup(
name='paydunya',
version="1.0.7",
author='PAYDUNYA',
author_email='paydunya@paydunya.com',
packages=['paydunya'],
cmdclass={'test': TestCommand, 'clean': CleanCommand},
scripts=[],
url='https://github.com/paydunyadev/paydunya-python-master',
license='LICENSE.txt',
keywords="paydunya mobile money payments",
description='PAYDUNYA Python client library',
long_description=readme('README.rst'),
classifiers=[
"Development Status :: 2 - Pre-Alpha",
"Intended Audience :: Developers",
"Topic :: Utilities",
"License :: OSI Approved :: MIT License",
],
install_requires=['requests >=2.0'],
)