-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathsetup.py
More file actions
28 lines (27 loc) · 878 Bytes
/
setup.py
File metadata and controls
28 lines (27 loc) · 878 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
from setuptools import setup
setup(
name='manager-api',
description='Python module to access the API provided by Manager accounting software ',
url='https://github.com/isotherm/python-manager-api/',
version='0.1.6',
author=u'Kirk Meyer',
author_email='kirk.meyer@alpaxo.com',
license='MIT',
platforms='any',
packages=[
'manager_api'
],
install_requires=[
'pydantic==1.10.20',
],
classifiers=[
'Development Status :: 3 - Alpha',
'Environment :: Web Environment',
'Intended Audience :: Developers',
'License :: OSI Approved :: MIT License',
'Operating System :: OS Independent',
'Programming Language :: Python :: 3.9',
'Topic :: Office/Business :: Financial :: Accounting',
'Topic :: Software Development :: Libraries :: Python Modules'
],
)