-
Notifications
You must be signed in to change notification settings - Fork 12
Expand file tree
/
Copy pathsetup.py
More file actions
31 lines (26 loc) · 842 Bytes
/
setup.py
File metadata and controls
31 lines (26 loc) · 842 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
# coding: utf-8
import setuptools
from setuptools import setup
from os import path
__version__ = '0.1.5'
requirements = [req.strip() for req in open('requirements.txt').readlines()]
short_description ='python raft implementation with resp interface'
setup(
name='pyraft',
packages=setuptools.find_packages(),
version=__version__,
description=short_description,
long_description=short_description,
author='Lee, Ki-Yeul',
author_email='lynix94@gmail.com',
license='MIT',
url='https://github.com/lynix94/pyraft',
keywords=['python', 'raft', 'replication', 'pyraft'],
install_requires=requirements,
python_requires = '>=3',
classifiers = [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
]
)