forked from TodaysMeet/flatdb
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
40 lines (37 loc) · 1.1 KB
/
setup.py
File metadata and controls
40 lines (37 loc) · 1.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
37
38
39
40
from setuptools import setup, find_packages
install_requires = [
'flask==2.3.2',
'leveldb==0.194',
'gevent==1.3.7',
'ujson==1.35',
]
setup(
name='flatdb',
version='0.1.0',
description='HTTP access to a LevelDB.',
long_description=open('README.rst').read(),
author='James Socol',
author_email='james@todaysmeet.com',
url='https://github.com/todaysmeet/flatdb',
license='Apache Software License',
packages=find_packages(),
include_package_data=True,
package_data={'': ['README.rst']},
entry_points={
'console_scripts': [
'flatdb-dev = flatdb.run:dev_server',
'flatdb = flatdb.run:run_server',
],
},
zip_safe=False,
install_requires=install_requires,
classifiers=[
'Development Status :: 4 - Beta',
'Intended Audience :: Developers',
'License :: OSI Approved :: Apache Software License',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
],
)