forked from teamniteo/niteoweb.fabfile
-
Notifications
You must be signed in to change notification settings - Fork 1
/
setup.py
39 lines (33 loc) · 1.03 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
33
34
35
36
37
38
39
# -*- coding: utf-8 -*-
"""Installer for this package."""
from setuptools import setup
from setuptools import find_packages
import os
# shamlessly stolen from Hexagon IT guys
def read(*rnames):
return open(os.path.join(os.path.dirname(__file__), *rnames)).read()
version = '2.2.2'
setup(name='niteoweb.fabfile',
version=version,
description="A bunch of Fabric commands we use all the time.",
long_description=read('docs', 'README.rst') +
read('docs', 'HISTORY.rst') +
read('docs', 'LICENSE.rst'),
classifiers=[
"Programming Language :: Python",
],
keywords='Fabric Python',
author='NiteoWeb Ltd.',
author_email='[email protected]',
url='http://www.niteoweb.com',
license='BSD',
packages=find_packages(exclude=['ez_setup']),
include_package_data=True,
zip_safe=False,
install_requires=[
# list project dependencies
'Fabric',
'cuisine',
'setuptools',
],
)