forked from Tblue/python-jproperties
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
48 lines (47 loc) · 1.55 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
41
42
43
44
45
46
47
48
import codecs
import os
from setuptools import setup
setup(
name="pyjproperties",
version="1.0.1",
description="Java Property file parser and writer for Python",
# Read the long description from our README.rst file, as UTF-8.
long_description=codecs.open(
os.path.join(
os.path.dirname(os.path.realpath(__file__)),
"README.rst"
),
"rb",
"utf-8"
).read(),
author="Tilman Blumenbach",
author_email="[email protected]",
entry_points={
"console_scripts": [
"propconv = pyjproperties:main"
]
},
url="https://github.com/globocom/pyjproperties",
py_modules=["pyjproperties"],
install_requires=["six>=1.10.0"],
setup_requires=["pytest-runner ~= 2.0"],
tests_require=[
"pytest",
"pytest-cov",
"pytest-datadir-ng"
],
classifiers=[
"Development Status :: 5 - Production/Stable",
"Intended Audience :: Developers",
"Intended Audience :: Information Technology",
"License :: OSI Approved :: BSD License",
"Operating System :: OS Independent",
"Programming Language :: Python :: 2.6",
"Programming Language :: Python :: 2.7",
"Programming Language :: Python :: 3.4",
"Programming Language :: Python :: 3.5",
"Topic :: Software Development"
],
license="BSD 3-Clause License; partially licensed under the Python Software Foundation License",
keywords="java property properties file parser reader writer",
)