forked from Vim-cn/Vinergy
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
41 lines (34 loc) · 1.04 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
#!/usr/bin/env python2
# vim:fileencoding=utf-8
# @Author: Vayn a.k.a. VT <vayn@vayn.de>
# @Name: setup.py
# @Date: 2011年06月06日 星期一 23时17分46秒
try:
from setuptools import setup
except ImportError:
from distutils.core import setup
with open('README.rst') as file:
long_description = file.read()
config = {
'name': 'Vinergy',
'description': 'Vinergy - CLI Pastebin within VimEnergy',
'long_description': long_description,
'author': 'Vayn',
'author_email': 'vayn@vayn.de',
'url': 'http://p.vim-cn.com',
'download_url': 'https://github.com/vayn/vinergy',
'version': '0.3',
'license': 'GPL3',
'install_requires': ['nose', 'paste', 'web.py', 'pymongo', 'pygments'],
'packages': ['vinergy'],
'classifiers': [
'Development Status :: 4 - Beta',
'Environment :: Web Environment',
'Intended Audience :: Developers',
'License :: OSI Approved :: GNU General Public License (GPL) ',
'Operating System :: POSIX :: Linux',
'Programming Language :: Python',
'Topic :: Internet',
],
}
setup(**config)