Skip to content

Commit

Permalink
Merge pull request #14 from presidento/setup.py
Browse files Browse the repository at this point in the history
setup.py: add long description and classifiers
  • Loading branch information
dagnelies authored Jan 27, 2023
2 parents f8b2c46 + 1d36382 commit d33ee3e
Showing 1 changed file with 11 additions and 2 deletions.
13 changes: 11 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
from setuptools import setup, find_packages
from setuptools import setup
import pathlib


setup(
Expand All @@ -7,11 +8,19 @@
py_modules=['pysos'],
scripts=['pysos.py'],
description='Simple Object Storage - Persistent dicts and lists for python.',
long_description=pathlib.Path('README.md').read_text(),
long_description_content_type='text/markdown',
url='https://github.com/dagnelies/pysos',
author='Arnaud Dagnelies',
author_email='[email protected]',
license='MIT',
classifiers=[],
classifiers=[
'Intended Audience :: Developers',
'License :: OSI Approved :: MIT License',
'Operating System :: OS Independent',
'Programming Language :: Python :: 3',
'Topic :: Database',
],
keywords='persistent persistence dict list file',
install_requires=['chardet']
)

0 comments on commit d33ee3e

Please sign in to comment.