Skip to content
This repository has been archived by the owner on Oct 3, 2020. It is now read-only.

Commit

Permalink
Initial Commit
Browse files Browse the repository at this point in the history
  • Loading branch information
ppereira1 committed Jul 5, 2019
0 parents commit 997fb42
Show file tree
Hide file tree
Showing 6 changed files with 58 additions and 0 deletions.
6 changes: 6 additions & 0 deletions .gitignore
@@ -0,0 +1,6 @@
.DS_Store
*.pyc
*.egg-info
*.swp
tags
dunning/docs/current
18 changes: 18 additions & 0 deletions MANIFEST.in
@@ -0,0 +1,18 @@
include MANIFEST.in
include requirements.txt
include *.json
include *.md
include *.py
include *.txt
recursive-include dunning *.css
recursive-include dunning *.csv
recursive-include dunning *.html
recursive-include dunning *.ico
recursive-include dunning *.js
recursive-include dunning *.json
recursive-include dunning *.md
recursive-include dunning *.png
recursive-include dunning *.py
recursive-include dunning *.svg
recursive-include dunning *.txt
recursive-exclude dunning *.pyc
7 changes: 7 additions & 0 deletions README.md
@@ -0,0 +1,7 @@
## Dunning

Dunning

#### License

MIT
1 change: 1 addition & 0 deletions license.txt
@@ -0,0 +1 @@
License: MIT
1 change: 1 addition & 0 deletions requirements.txt
@@ -0,0 +1 @@
frappe
25 changes: 25 additions & 0 deletions setup.py
@@ -0,0 +1,25 @@
# -*- coding: utf-8 -*-
from setuptools import setup, find_packages
import re, ast

with open('requirements.txt') as f:
install_requires = f.read().strip().split('\n')

# get version from __version__ variable in dunning/__init__.py
_version_re = re.compile(r'__version__\s+=\s+(.*)')

with open('dunning/__init__.py', 'rb') as f:
version = str(ast.literal_eval(_version_re.search(
f.read().decode('utf-8')).group(1)))

setup(
name='dunning',
version=version,
description='Dunning',
author='Alyf',
author_email='Alyf.de',
packages=find_packages(),
zip_safe=False,
include_package_data=True,
install_requires=install_requires
)

0 comments on commit 997fb42

Please sign in to comment.