-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
36 lines (33 loc) · 811 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
34
35
from setuptools import setup
test_requires = [
'tox',
'pytest',
]
setup(
name = 'serpy',
py_modules = ['libserpy'],
version = '0.0.1',
description = (
'Serpy provides library and command line tool for querying search '
'engines'
),
author = 'dan@woz.io',
author_email = 'dan@woz.io',
url = 'https://github.com/dwoz/serpy',
keywords = [
'web', 'search',
],
entry_points = {
'console_scripts': [
'serpy=libserpy:main',
],
},
classifiers=[
'Development Status :: 1 - Planning',
'Intended Audience :: Other Audience',
'Programming Language :: Python',
'Natural Language :: English',
'Operating System :: POSIX :: Linux',
'Topic :: Utilities',
],
)