-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
39 lines (37 loc) 路 1.26 KB
/
Copy pathsetup.py
File metadata and controls
39 lines (37 loc) 路 1.26 KB
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
from setuptools import setup, find_packages
with open("README.md", "r", encoding="utf-8") as fh:
long_description = fh.read()
if __name__ == "__main__":
setup(
name="solring",
version="0.0.2",
author="Hakan Ozler",
author_email="ozler.hakan@gmail.com",
description="a solr import tool to save data from solr to local storage",
long_description=long_description,
long_description_content_type="text/plain; charset=UTF-8",
url="https://github.com/ozlerhakan/solring",
project_urls={
"Bug Tracker": "https://github.com/ozlerhakan/solring/issues",
},
license="MIT",
classifiers=[
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
],
packages=find_packages(where='src'),
package_dir={'': 'src'},
python_requires=">=3.7",
keywords=["python", 'solr', 'pandas', 'import'],
install_requires=[
'solrpy==1.0.0',
'pandas>=1.3.4'
],
platforms=["linux", "unix"],
entry_points={
"console_scripts": [
"solring=solring.Solring:main"
],
}
)