-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathsetup.py
More file actions
30 lines (28 loc) · 951 Bytes
/
setup.py
File metadata and controls
30 lines (28 loc) · 951 Bytes
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
import os
from setuptools import setup
with open(os.path.join(os.path.dirname(__file__), 'README.rst')) as f:
readme_rst = f.read()
setup(
name='sqlitent',
url='https://github.com/digitalmensch/sqlitent',
download_url='https://pypi.python.org/pypi/sqlitent',
description='namedtuples inside set-like sqlite databases',
long_description=readme_rst,
keywords='sqlite, persistent set, namedtuple',
platforms='any',
license="MIT",
version='0.2',
author='Tobias Ammann',
py_modules=['sqlitent'],
classifiers=[
'Development Status :: 4 - Beta',
'Intended Audience :: Developers',
'License :: OSI Approved :: MIT License',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Programming Language :: Python :: 3.6',
'Topic :: Database :: Front-Ends',
],
setup_requires=['pytest-runner'],
tests_require=['pytest'],
)