-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
executable file
·33 lines (31 loc) · 1017 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
31
32
33
#!/usr/bin/env python
# coding: utf-8
from setuptools import setup
from xsnippet_cli import __version__ as version
setup(
name='xsnippet-cli',
version=version,
url='https://github.com/xsnippet/xsnippet-cli',
license='BSD License',
author='Igor Kalnitsky',
author_email='[email protected]',
description='A simple command line interface for the XSnippet service.',
long_description=open('README.rst').read(),
packages=['xsnippet_cli'],
entry_points={
'console_scripts': ['xsnippet = xsnippet_cli.cli:main'],
},
install_requires=[
'Pygments>=1.5',
],
classifiers=[
'Environment :: Web Environment',
'Intended Audience :: Developers',
'License :: OSI Approved :: BSD License',
'Programming Language :: Python',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.2',
'Programming Language :: Python :: 3.3',
],
)