-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
35 lines (27 loc) · 931 Bytes
/
setup.py
File metadata and controls
35 lines (27 loc) · 931 Bytes
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
from setuptools import setup
with open("README.md", "r") as fh:
long_description = fh.read()
setup(
name='ccm_java8',
version='1.0',
py_modules=['ccm_java8'],
author="Adam Zegelin",
author_email="adam@instaclustr.com",
description="CCM extension that starts Cassandra (and related tools) under Java 8",
long_description=long_description,
long_description_content_type="text/markdown",
url="https://github.com/instaclustr/ccm-java8",
install_requires=['ccm', 'os-release'],
entry_points={
'ccm_extension': ['java_home = ccm_java8:set_java_env']
},
classifiers=[
'Development Status :: 5 - Production/Stable',
'Environment :: Console',
'Environment :: Plugins',
'Environment :: MacOS X',
'Intended Audience :: Developers',
'License :: OSI Approved :: Apache Software License',
'Topic :: Database',
]
)