Forráskód Böngészése

created dingguo package

Fabian Peter Hammerle 9 éve
szülő
commit
8fbf8c90b7
4 módosított fájl, 32 hozzáadás és 9 törlés
  1. 9 0
      dingguo/__init__.py
  2. 3 8
      scripts/order-confirmation-mail-parser
  3. 19 0
      setup.py
  4. 1 1
      tests/test_integration.py

+ 9 - 0
dingguo/__init__.py

@@ -0,0 +1,9 @@
+import yaml
+
+class Figure(object):
+
+    def __init__(self, value, unit):
+        self.value = value
+        assert type(unit) is unicode
+        self.unit = unit
+

+ 3 - 8
order-confirmation-mail-parser → scripts/order-confirmation-mail-parser

@@ -2,6 +2,8 @@
 # -*- coding: utf-8 -*-
 # PYTHON_ARGCOMPLETE_OK
 
+import dingguo
+
 import re
 import os
 import sys
@@ -46,14 +48,7 @@ class Order(object):
 
 yaml.SafeDumper.add_representer(Order, lambda dumper, order: dumper.represent_dict(order.dict_repr()))
 
-class Figure(object):
-
-    def __init__(self, value, unit):
-        self.value = value
-        assert type(unit) is unicode
-        self.unit = unit
-
-class Distance(Figure):
+class Distance(dingguo.Figure):
 
     def __init__(self, value, unit):
         assert type(value) is float

+ 19 - 0
setup.py

@@ -0,0 +1,19 @@
+from setuptools import setup
+
+import glob
+
+setup(
+    name = 'dingguo',
+    # version = '',
+    # description = '',
+    author = 'Fabian Peter Hammerle',
+    author_email = 'fabian.hammerle@gmail.com',
+    # url = '',
+    # download_url = '',
+    # keywords = [],
+    # classifiers = [],
+    packages = ['dingguo'],
+    scripts = glob.glob('scripts/*'),
+    # install_requires = [],
+    tests_require = ['pytest']
+    )

+ 1 - 1
tests/test_integration.py

@@ -6,7 +6,7 @@ import yaml
 import subprocess
 
 project_root_path = os.path.realpath(os.path.join(__file__, '..', '..'))
-script_path = os.path.join(project_root_path, 'order-confirmation-mail-parser')
+script_path = os.path.join(project_root_path, 'scripts', 'order-confirmation-mail-parser')
 test_data_path = os.path.join(project_root_path, 'tests', 'data')
 
 def test_integration():