-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathsetup.py
32 lines (28 loc) · 1.01 KB
/
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
32
"""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="2.1.4",
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", "act.api.libs"],
namespace_packages=["act"],
install_requires=["caep>=0.1.0", "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)",
],
)