-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
25 lines (23 loc) · 964 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
#!/usr/bin/env python
#coding: utf-8
from distutils.core import setup
setup(
name = "valet",
author = "Adam Compton",
author_email = "[email protected]",
version = "0.4",
license = "BSD-2-Clause",
url = "https://github.com/handyman5/valet",
download_url = "https://github.com/handyman5/valet/tarball/master",
description = "valet is a script that turns any directory into a simple wiki, complete with wikitext rendering, editing, and automatically committing changes to version control.",
install_requires = ['bottle'],
scripts = ['valet'],
classifiers = [
'Programming Language :: Python',
'Programming Language :: Python :: 2',
'License :: OSI Approved :: BSD License',
'Operating System :: Unix',
'Development Status :: 5 - Production/Stable',
'Environment :: No Input/Output (Daemon)'
]
)