-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathsetup.py
More file actions
20 lines (19 loc) · 791 Bytes
/
setup.py
File metadata and controls
20 lines (19 loc) · 791 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
from setuptools import setup
setup(name="PySolarized",
version="1.4.1",
description="A simple library for accessing Apache Solr full-text search engine. Allows updating and queries over"
"multiple cores.",
author="Jernej Virag",
author_email="jernej@virag.si",
packages=["pysolarized"],
url="https://github.com/izacus/pysolarized",
license="MIT",
install_requires=["requests", "httpcache"],
classifiers=[
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Topic :: Software Development :: Libraries",
"Topic :: Internet :: WWW/HTTP :: Indexing/Search"
])