forked from plaes/wirexfers
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
executable file
·53 lines (45 loc) · 1.37 KB
/
Copy pathsetup.py
File metadata and controls
executable file
·53 lines (45 loc) · 1.37 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
#!/usr/bin/env python
import os, sys
import wirexfers
try:
from setuptools import setup
except ImportError:
from distutils.core import setup
if sys.argv[-1] == 'publish':
os.system('python setup.py sdist upload')
sys.exit()
os.environ['PYTHONDONTWRITEBYTECODE'] = '1'
packages = [
'wirexfers',
'wirexfers.providers',
]
requires = [
'pycrypto >= 2.5'
]
setup(
name='wirexfers',
version=wirexfers.__version__,
description='Simple API for IPizza Solo/TUPAS payment protocols.',
long_description=open('README.rst').read() + '\n\n' +
open('HISTORY.rst').read(),
author='Priit Laes',
author_email='[email protected]',
url='http://plaes.org/projects/wirexfers',
packages=packages,
package_data={'': ['LICENSE']},
package_dir={'wirexfers': 'wirexfers'},
include_package_data=True,
install_requires=requires,
license=open('LICENSE').read(),
classifiers=(
'Development Status :: 1 - Planning',
'Intended Audience :: Developers',
'Natural Language :: English',
'License :: OSI Approved :: ISC License (ISCL)',
'Programming Language :: Python',
'Programming Language :: Python :: 2.7',
'Topic :: Office/Business :: Financial',
'Topic :: Software Development :: Libraries :: Python Modules',
),
)
del os.environ['PYTHONDONTWRITEBYTECODE']