forked from demystify-systems/brightpearl-python
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
28 lines (18 loc) · 627 Bytes
/
setup.py
File metadata and controls
28 lines (18 loc) · 627 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
import os
from setuptools import setup, find_packages
# Utility function to read the README file.
def read(fname):
return open(os.path.join(os.path.dirname(__file__), fname)).read()
VERSION = '0.1'
setup(
name='brightpearl',
version=VERSION,
packages=find_packages(),
url='https://github.com/demystify-systems/brightpearl-python',
author='Demystify Systems',
author_email='[email protected]',
description='Python client library for Brightpearl API : https://www.brightpearl.com',
long_description=read('README.md'),
license='MIT',
keywords=['brightpearl', 'api', 'client'],
)