-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathsetup.py
More file actions
22 lines (20 loc) · 740 Bytes
/
setup.py
File metadata and controls
22 lines (20 loc) · 740 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
import setuptools
long_description = "[Libcloud](https://libcloud.apache.org/) driver for [vdsina.ru](https://vdsina.ru/)"
setuptools.setup(
name="vdsinadriver",
version="0.0.1",
author="Sergey Mezentsev",
author_email="[email protected]",
description="Libcloud driver for vdsina.ru",
license="UNLICENSE",
long_description=long_description,
long_description_content_type="text/markdown",
url="https://github.com/thebits/libcloud-vdsina",
install_requires=["apache-libcloud>=3.0.0"],
packages=setuptools.find_packages(),
classifiers=[
"Intended Audience :: System Administrators",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3",
],
)