forked from goibibo/woof
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
42 lines (31 loc) · 985 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
38
39
40
41
42
import sys
import os
from setuptools import setup, Command
here = os.path.abspath(os.path.dirname(__file__))
with open('VERSION', 'r') as v:
__version__ = v.read().rstrip()
with open(os.path.join(here, 'README.md')) as f:
README = f.read()
setup(
name="woof",
version=__version__,
packages=[
"woof"
],
author="Jyotiswarup Raiturkar",
author_email="[email protected]",
description="Messaging library ",
long_description=README,
keywords="apache kafka",
install_requires=['six'],
classifiers=[
"Development Status :: 3 - Alpha",
"Intended Audience :: Developers",
"Programming Language :: Python",
"Programming Language :: Python :: 2",
"Programming Language :: Python :: 2.6",
"Programming Language :: Python :: 2.7",
"Programming Language :: Python :: Implementation :: PyPy",
"Topic :: Software Development :: Libraries :: Python Modules",
]
)