-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathsetup.py
More file actions
36 lines (33 loc) · 1 KB
/
setup.py
File metadata and controls
36 lines (33 loc) · 1 KB
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
import setuptools
import codecs
test_deps = ['pytest']
try:
import unittest.mock
except:
test_deps.append('mock')
setuptools.setup(
name='doublethink',
version='0.4.10',
packages=['doublethink'],
classifiers=[
'Programming Language :: Python :: 3.8',
'Programming Language :: Python :: 3.9',
'Programming Language :: Python :: 3.10',
'Programming Language :: Python :: 3.11',
'Programming Language :: Python :: 3.12',
],
install_requires=['rethinkdb==2.4.9'],
extras_require={'test': test_deps},
url='https://github.com/internetarchive/doublethink',
author='Noah Levitt',
author_email='nlevitt@archive.org',
description='rethinkdb python library',
long_description=codecs.open(
'README.rst', mode='r', encoding='utf-8').read(),
license='license.txt',
entry_points={
'console_scripts': [
'doublethink-purge-stale-services=doublethink.cli:purge_stale_services',
]
},
)