-
Notifications
You must be signed in to change notification settings - Fork 1
/
setup.py
32 lines (30 loc) · 1004 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
32
from setuptools import setup, find_packages
# Get the long description from the README file
with open("README.md") as f:
long_description = f.read()
setup(
name="py-jelastic",
version="0.1.6",
description="Jelastic API client library",
long_description=long_description,
long_description_content_type="text/markdown",
url="https://github.com/Onemind-Services-LLC/py-jelastic",
author="Abhimanyu Saharan",
author_email="[email protected]",
license="Apache2",
include_package_data=True,
use_scm_version=True,
packages=find_packages(exclude=["tests", "tests.*"]),
install_requires=[
"requests",
],
zip_safe=False,
keywords=["jelastic", "api", "client"],
classifiers=[
"Intended Audience :: Developers",
"Development Status :: 2 - Pre-Alpha",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
],
)