-
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) · 858 Bytes
/
setup.py
File metadata and controls
32 lines (30 loc) · 858 Bytes
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
# -*- coding: utf-8 -*-
from setuptools import setup, find_packages
try:
long_description = open("README.rst").read()
except IOError:
long_description = "Deployer and server automation tool."
setup(
name="py_mina",
version="0.2.7",
description="Python library for deploying applications on remote server",
long_description=long_description,
license="MIT",
author="Cidevant Von Goethe",
author_email="cidevant@mail.ru",
url="https://github.com/py-mina-deploy/py-mina",
packages=find_packages(),
entry_points={
'console_scripts': [
'py_mina = py_mina.cli.cli:run',
]
},
install_requires=[
'fabric',
],
classifiers=[
"Programming Language :: Python",
"Programming Language :: Python :: 2.7",
"Programming Language :: Python :: 3.4",
]
)