Skip to content

Commit c3847f9

Browse files
author
Daniel Wozniak
committed
Rename module to libserpy and add a setup.py
1 parent 9167510 commit c3847f9

File tree

3 files changed

+38
-0
lines changed

3 files changed

+38
-0
lines changed

.gitignore

+2
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,4 @@
11
*.pyc
22
venv
3+
4+
serpy.egg-info

serpy.py libserpy.py

File renamed without changes.

setup.py

+36
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,36 @@
1+
from setuptools import setup
2+
3+
test_requires = [
4+
'tox',
5+
'pytest',
6+
]
7+
8+
setup(
9+
name = 'serpy',
10+
py_modules = ['libserpy'],
11+
version = '0.0.1',
12+
description = (
13+
'Serpy provides library and command line tool for querying search '
14+
'engines'
15+
),
16+
author = '[email protected]',
17+
author_email = '[email protected]',
18+
url = 'https://github.com/dwoz/serpy',
19+
keywords = [
20+
'web', 'search',
21+
],
22+
entry_points = {
23+
'console_scripts': [
24+
'serpy=libserpy:main',
25+
],
26+
},
27+
classifiers=[
28+
'Development Status :: 1 - Planning',
29+
'Intended Audience :: Other Audience',
30+
'Programming Language :: Python',
31+
'Natural Language :: English',
32+
'Operating System :: POSIX :: Linux',
33+
'Topic :: Utilities',
34+
],
35+
)
36+

0 commit comments

Comments
 (0)