forked from coderanger/commis
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
32 lines (30 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
#!/usr/bin/env python
# -*- coding: iso-8859-1 -*-
import os
from setuptools import setup, find_packages
setup(
name = 'Commis',
version = '0.1',
packages = find_packages(),
author = 'Noah Kantrowitz',
author_email = 'noah@coderanger.net',
description = 'Python implementation of a Chef server.',
long_description = open(os.path.join(os.path.dirname(__file__), 'README.md')).read(),
license = 'BSD',
keywords = '',
url = 'http://github.com/coderanger/commis',
classifiers = [
#'Development Status :: 1 - Planning',
'Development Status :: 2 - Pre-Alpha',
#'Development Status :: 3 - Alpha',
#'Development Status :: 4 - Beta',
#'Development Status :: 5 - Production/Stable',
#'Development Status :: 6 - Mature',
#'Development Status :: 7 - Inactive',
'License :: OSI Approved :: BSD License',
'Natural Language :: English',
'Operating System :: OS Independent',
'Programming Language :: Python',
],
zip_safe = False,
)