-
Notifications
You must be signed in to change notification settings - Fork 10
/
Copy pathsetup.py
26 lines (24 loc) · 809 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
25
26
from setuptools import setup
import pathlib
setup(
name='pysos',
version='1.3.0',
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=[
'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']
)