forked from mnemonic-no/act-api-python
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
31 lines (28 loc) · 1003 Bytes
/
setup.py
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
"""Setup script for the python-act library module"""
from os import path
from setuptools import setup
# read the contents of your README file
this_directory = path.abspath(path.dirname(__file__))
with open(path.join(this_directory, 'README.md'), "rb") as f:
long_description = f.read().decode('utf-8')
setup(
name="act-api",
version="1.0.1",
author="mnemonic AS",
author_email="[email protected]",
description="Python library to connect to the ACT rest API",
long_description=long_description,
long_description_content_type='text/markdown',
license="MIT",
keywords="ACT, mnemonic",
url="https://github.com/mnemonic-no",
packages=["act.api"],
namespace_packages=['act'],
install_requires=['requests', 'responses'],
python_requires='>=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, <4',
classifiers=[
"Development Status :: 4 - Beta",
"Topic :: Utilities",
"License :: OSI Approved :: ISC License (ISCL)",
],
)