-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
30 lines (27 loc) · 801 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
from setuptools import setup, find_packages, Command
import os
setup(
name = "burlap",
version = '0.1.1',
packages = find_packages(),
scripts = ['bin/burlap'],
package_data = {
'burlap': [
'templates/*.*',
],
},
author = "Chris Spencer",
author_email = "chrisspen@gmail.com",
description = "Fabric commands for simplifying Django deployment",
license = "LGPL",
url = "https://github.com/chrisspen/burlap",
classifiers = [
'Environment :: Web Environment',
'Intended Audience :: Developers',
'License :: OSI Approved :: LGPL License',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Framework :: Django',
],
install_requires = ['fabric'],
)