-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathsetup.py
More file actions
32 lines (30 loc) · 1.06 KB
/
setup.py
File metadata and controls
32 lines (30 loc) · 1.06 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
from setuptools import setup
# read the contents of your README file
from pathlib import Path
this_directory = Path(__file__).parent
long_description = (this_directory / "README.md").read_text()
setup(
name = 'fiixclient',
packages = ['fiixclient'],
version = '1.1.2',
license='MIT',
description = 'An easy to use Python wrapper for the Fiix CMMS API',
long_description=long_description,
long_description_content_type='text/markdown',
author = 'Ronald Langeveld',
author_email = 'hi@ronaldlangeveld.com',
url = 'https://www.ronaldlangeveld.com',
download_url = 'https://github.com/ronaldlangeveld/python-fiix-cmms-client/archive/refs/tags/Latest.tar.gz',
keywords = ['FIIX', 'CMMS', 'API', 'MAINTENANCE'],
install_requires=[
'requests',
],
classifiers=[
'Development Status :: 4 - Beta',
'Intended Audience :: Developers',
'Topic :: Software Development :: Build Tools',
'License :: OSI Approved :: MIT License',
'Programming Language :: Python :: 3.8',
'Programming Language :: Python :: 3.9',
],
)