added setup.py
This commit is contained in:
parent
b234a3545a
commit
e460aa277b
2
.gitignore
vendored
2
.gitignore
vendored
@ -5,3 +5,5 @@ conf.py
|
||||
locale
|
||||
latest_updates.json
|
||||
.wnf-lang-status
|
||||
*.egg-info
|
||||
dist/
|
||||
|
0
erpnext/__init__.py
Normal file
0
erpnext/__init__.py
Normal file
16
setup.py
Normal file
16
setup.py
Normal file
@ -0,0 +1,16 @@
|
||||
from setuptools import setup, find_packages
|
||||
import os
|
||||
|
||||
version = '4.0.0-wip'
|
||||
|
||||
setup(
|
||||
name='erpnext',
|
||||
version=version,
|
||||
description='Open Source ERP',
|
||||
author='Web Notes Technologies',
|
||||
author_email='info@erpnext.com',
|
||||
packages=find_packages(),
|
||||
zip_safe=False,
|
||||
include_package_data=True,
|
||||
install_requires=("webnotes",),
|
||||
)
|
Loading…
x
Reference in New Issue
Block a user