-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
24 lines (21 loc) · 841 Bytes
/
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
#!/usr/bin/env python
from setuptools import setup, find_packages
with open('README.md', 'r', encoding = 'UTF-8') as fh:
long_description = fh.read()
setup(
name='pyjavaproperties',
version='0.0.2',
description='This is a "fork" of https://pypi.org/project/pyjavaproperties/. I haven\'t located the original source and made some changes so that this would work on py3.',
author='Pier-Angelo Gaetani',
author_email='[email protected]',
long_description=long_description,
long_description_content_type='text/markdown',
url='https://github.com/UltimatePancake/pyjavaproperties',
license='LICENSE',
packages=find_packages(),
classifiers=[
'Programming Language :: Python :: 3',
'License :: OSI Approved :: PSF License',
'Operating System :: OS Independent'
]
)