-
Notifications
You must be signed in to change notification settings - Fork 10
/
setup.py
39 lines (36 loc) · 1.14 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 python
from setuptools import setup
entry_points = {
'console_scripts': [
'clf = clf:run',
]
}
requirements = open('requirements.txt').read()
readme = open('README.rst').read()
setup(
name="clf",
version="0.5.7",
url='http://github.com/ncrocfer/clf',
author='Nicolas Crocfer',
author_email='[email protected]',
description="Command line tool to search snippets on Commandlinefu.com",
long_description=readme,
packages=['clf'],
include_package_data=True,
install_requires=requirements,
entry_points=entry_points,
classifiers=(
'Development Status :: 5 - Production/Stable',
'Environment :: Console',
'Natural Language :: English',
'Intended Audience :: Developers',
'License :: OSI Approved :: MIT License',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Programming Language :: Python :: 2',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.3',
'Programming Language :: Python :: 3.4'
),
)