-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathsetup.py
More file actions
38 lines (29 loc) · 1.13 KB
/
setup.py
File metadata and controls
38 lines (29 loc) · 1.13 KB
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
29
30
31
32
33
34
35
36
37
38
from setuptools import setup
setup(
name='moneyworks',
version='1.1.0',
description='A python API for Cognito Moneyworks accounting software',
long_description='A python API for Cognito Moneyworks accounting software',
url='http://github.com/ari/moneyworks-cli/',
author='Aristedes Maniatis',
author_email='ari@ish.com.au',
license="APL2",
# Classifiers help users find your project by categorizing it.
#
# For a list of valid classifiers, see
# https://pypi.python.org/pypi?%3Aaction=list_classifiers
classifiers=[
'Development Status :: 5 - Production/Stable',
'Intended Audience :: Developers',
'Topic :: Software Development :: Libraries :: Python Modules',
'License :: OSI Approved :: Apache Software License',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.4',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
],
keywords='api moneyworks accounting',
data_files = [("", ["LICENSE"])],
packages=["moneyworks"],
install_requires=['requests']
)