-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
36 lines (32 loc) · 996 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
33
34
35
36
#!/usr/bin/env python
from os import path
from setuptools import setup
here = path.abspath(path.dirname(__file__))
def read(fname):
return open(path.join(here, fname)).read()
setup(
name="webfaction_fab2",
version="0.0.3",
description=("Scripts to help provision, configure and deply to"
"webfaction using Python and Fabric 2"),
url="https://github.com/moaxey/wf_fab2",
packages=["wf_fab2",],
python_requires='>3.6',
install_requires=[
"fabric",
"dnspython",
"requests",
],
author="Mathew Oakes",
author_email="[email protected]",
license="MIT",
long_description=read("README.rst"),
classifiers=[
"Development Status :: 3 - Alpha",
"Programming Language :: Python :: 3 :: Only",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
],
)