-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathsetup.py
More file actions
31 lines (29 loc) · 777 Bytes
/
setup.py
File metadata and controls
31 lines (29 loc) · 777 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
31
from setuptools import setup
with open("README.md", "r") as fh:
long_description = fh.read()
setup(
name='pyshard',
version='0.2.3',
description='Distributed key-value storage in Python stdlib',
long_description=long_description,
long_description_content_type="text/markdown",
author='la9ran9e',
author_email="tvauritimur@gmail.com",
url='https://github.com/la9ran9e/pyshard',
packages=[
'pyshard',
'pyshard.app',
'pyshard.core',
'pyshard.master',
'pyshard.shard',
'pyshard.settings',
'pyshard.utils',
'pyshard.storage',
'pyshard.console'
],
entry_points={
'console_scripts': [
'pyshard=pyshard.console.pyshard:main'
]
}
)