Commit e79063c4 by Owo Sugiana

Pasang ebcdic sebelum setup.py

1 parent 2b983f40
......@@ -5,3 +5,16 @@ Di dalamnya ada:
* Class terkait pembuatan daemon TCP/IP, baik sebagai server maupun client.
* Class terkait dokumen ISO8583.
Pemasangan
----------
Sebelum memasang ini pasang terlebih dahulu paket terkait::
$ env/bin/pip install -r requirements.txt
Lalu pasang paket ini seperti biasa::
$ env/bin/pip install .
Selamat mencoba.
import os
from setuptools import setup
from setuptools import (
setup,
find_packages,
)
here = os.path.abspath(os.path.dirname(__file__))
......@@ -12,17 +15,9 @@ line = CHANGES.splitlines()[0]
version = line.split()[0]
requires = [
'ebcdic',
'ISO8583',
]
packages = [
'opensipkd',
'opensipkd.tcp',
'opensipkd.streamer',
'opensipkd.iso8583',
'opensipkd.iso8583.network',
]
setup(
name='opensipkd-iso8583',
......@@ -32,7 +27,7 @@ setup(
author='Owo Sugiana',
author_email='sugiana@gmail.com',
license='PostgreSQL License',
packages=packages,
packages=find_packages(),
install_requires=requires,
zip_safe=False,
)
Markdown is supported
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!