-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
executable file
·27 lines (25 loc) · 838 Bytes
/
setup.py
File metadata and controls
executable file
·27 lines (25 loc) · 838 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
#!/usr/bin/env python
# -*- coding: utf-8 -*-
# Author: fanwei.zeng
# Time: 2019/3/24 22:27
from setuptools import setup, find_packages
import os
with open(os.path.join(os.path.dirname(__file__), "README.md")) as f:
long_description = f.read()
setup(
name="redis-funnel",
long_description=long_description,
long_description_content_type="text/markdown",
url="https://github.com/PurpleSun/redis_funnel",
version="0.0.1",
keywords=("distributed", "funnel", "redis"),
description="A distributed funnel system based on redis, management system included.",
license="MIT License",
install_requires=["Flask==1.0.2", "redis==3.2.1"],
author="fanwei.zeng",
author_email="stayblank@gmail.com",
packages=find_packages(),
package_data={},
include_package_data=True,
platforms="any"
)