-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
41 lines (36 loc) · 1.28 KB
/
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
# -*- coding: utf-8 -*-
import os
# allow setup.py to be run from any path
os.chdir(os.path.normpath(os.path.join(os.path.abspath(__file__), os.pardir)))
from setuptools import setup, find_packages
README = '''
This is a Python binding for groupcache.
Groupcache is a distributed caching and cache-filling library, intended as a replacement for a pool of memcached nodes in many cases.
For more information, please visit the [GitHub repository](https://github.com/amazingchow/groupcache-py).
'''
setup(
name='pygroupcache',
version='1.0.1',
description='A Python binding for groupcache',
long_description=README,
author='Adam Zhou',
author_email='[email protected]',
url='https://github.com/amazingchow/groupcache-py',
packages=find_packages(),
include_package_data=True,
install_requires=[
# Add any dependencies here
],
classifiers=[
'Development Status :: 5 - Production/Stable',
'Intended Audience :: Developers',
'License :: OSI Approved :: MIT License',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3.8',
],
entry_points={
'console_scripts': []
}
)