-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
39 lines (37 loc) · 1.26 KB
/
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
36
37
38
39
import setuptools
with open("README.md", "rt") as f:
long_description = f.read()
setuptools.setup(
name="scleradmin",
version="1.0-beta-3",
author="Sclera, Inc.",
author_email="[email protected]",
description="Sclera Platform Administration Tool",
long_description=long_description,
long_description_content_type="text/markdown",
url="https://github.com/scleradb/scleradmin",
keywords="sql query-processor analytics streaming-data data-management data-cleaning data-virtualization plugin-architecture admin installer cli",
packages=["src"],
package_data={
"src": ["config/sclera.conf"],
},
install_requires=['requests'],
include_package_data=True,
classifiers=[
"Programming Language :: Python :: 3.8",
"Programming Language :: Java",
"License :: OSI Approved :: Apache Software License",
"Operating System :: OS Independent",
"Development Status :: 4 - Beta",
"Environment :: Console",
"Intended Audience :: Developers",
"Intended Audience :: Information Technology",
"Topic :: System :: Installation/Setup"
],
python_requires=">=3.8",
entry_points={
"console_scripts": [
"scleradmin = src:main",
],
},
)