-
Notifications
You must be signed in to change notification settings - Fork 54
/
setup.py
40 lines (36 loc) · 1.11 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
40
import io
from setuptools import setup
description = 'A high precision Java CMS optimizer'
try:
with io.open('README.md', encoding="utf-8") as fh:
long_description = fh.read()
except IOError:
long_description = description
setup(
name='jtune',
version='4.0.1',
description=description,
long_description=description,
url='https://github.com/linkedin/JTune',
author='LinkedIn',
author_email='[email protected]',
license='Apache',
packages=['jtune'],
entry_points={
'console_scripts': [
'jtune = jtune.jtune:main',
]
},
classifiers=[
'Development Status :: 5 - Production/Stable',
'Environment :: Console',
'Intended Audience :: Developers',
'License :: OSI Approved :: Apache Software License',
'Programming Language :: Python :: 3 :: Only',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.4',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
]
)