Skip to content
This repository has been archived by the owner on Sep 13, 2021. It is now read-only.

Commit

Permalink
[fix] prepare for versioning
Browse files Browse the repository at this point in the history
  • Loading branch information
anandpdoshi committed Apr 7, 2016
1 parent e6a0411 commit cf20a75
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 2 deletions.
1 change: 1 addition & 0 deletions schools/__init__.py
@@ -0,0 +1 @@
from erpnext.__version__ import __version__
2 changes: 2 additions & 0 deletions schools/__version__.py
@@ -0,0 +1,2 @@
from __future__ import unicode_literals
__version__ = '0.0.1'
6 changes: 4 additions & 2 deletions setup.py
@@ -1,8 +1,9 @@
# -*- coding: utf-8 -*-
from setuptools import setup, find_packages
import os
from pip.req import parse_requirements

version = '0.0.1'
requirements = parse_requirements("requirements.txt", session="")

setup(
name='schools',
Expand All @@ -13,5 +14,6 @@
packages=find_packages(),
zip_safe=False,
include_package_data=True,
install_requires=("frappe",),
install_requires=[str(ir.req) for ir in requirements],
dependency_links=[str(ir._link) for ir in requirements if ir._link]
)

0 comments on commit cf20a75

Please sign in to comment.