-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
37 lines (30 loc) · 825 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
27
28
29
30
31
32
33
34
35
36
37
from setuptools import setup
def read(fname):
return open(fname).read()
setup_requires = [
'click',
'flask',
'python-socketio',
'requests'
]
setup(
name="KeyValueStore",
version="0.1",
author="Nilesh Bhadana",
author_email="nileshbhadana3@gmail.com",
description="Key-Value Store",
long_description=read('README.md'),
long_description_content_type="text/markdown",
url="https://github.com/nileshbhadana/KeyValueStore",
project_urls={
"Bug Tracker": "https://github.com/nileshbhadana/KeyValueStore/issues",
},
license=read("LICENSE"),
classifiers=[
"Development Status :: Alpha",
"Topic :: Utilities",
"Programming Language :: Python :: 3.9",
],
python_requires=">=3.9",
setup_requires=setup_requires
)