-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
42 lines (36 loc) · 1.08 KB
/
Copy pathsetup.py
File metadata and controls
42 lines (36 loc) · 1.08 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
40
41
42
#!/usr/bin/env python
# -*- coding:utf-8 -*-
from setuptools import setup, find_packages
import shtools
with open("README.md", encoding="utf-8") as f:
readme = f.read()
setup(
name="shtools",
version=shtools.__version__,
packages=find_packages(exclude=["test*"]),
zip_safe=False,
extras_require={
"curl": ["requests"],
"mongo": ["pymongo"],
"mysql": ["pymysql"],
"psql": ["psycopg2"],
"rediscli": ["redis", "rediscluster"],
"scp": ["paramiko"],
"ssh": ["paramiko"],
"kafka": ["kafka-python"],
},
url="https://github.com/meanstrong/shtools",
description="some useful bash tools write in python",
long_description=readme,
long_description_content_type="text/markdown",
author="pengmingqiang",
author_email="rockypengchina@outlook.com",
maintainer="pengmingqiang",
maintainer_email="rockypengchina@outlook.com",
platforms=['any'],
license="Apache 2.0",
classifiers=[
"Programming Language :: Python :: 3",
"Operating System :: OS Independent",
],
)