You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
20 lines
622 B
20 lines
622 B
# -*- coding: utf-8 -*- |
|
from setuptools import setup, find_packages |
|
|
|
with open('requirements.txt') as f: |
|
install_requires = f.read().strip().split('\n') |
|
|
|
# get version from __version__ variable in justworks_erpnext/__init__.py |
|
from justworks_erpnext import __version__ as version |
|
|
|
setup( |
|
name='justworks_erpnext', |
|
version=version, |
|
description='An add-on for ERPNext which allows Justworks invoices to be loaded as Journal Entry documents.', |
|
author='Studio Infinity', |
|
author_email='code@studioinfinity.org', |
|
packages=find_packages(), |
|
zip_safe=False, |
|
include_package_data=True, |
|
install_requires=install_requires |
|
)
|
|
|