Skip to content

Commit 24a61b4

Browse files
committed
Merge pull request lethain#1 from lysol/master
setup.py and module rename
2 parents ebc2b1d + de5aec0 commit 24a61b4

File tree

6 files changed

+23
-1
lines changed

6 files changed

+23
-1
lines changed

‎__init__.py‎

Lines changed: 0 additions & 1 deletion
This file was deleted.

‎setup.py‎

Lines changed: 23 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,23 @@
1+
#!/usr/bin/env python
2+
3+
try:
4+
from setuptools import setup, find_packages
5+
except ImportError:
6+
from ez_setup import use_setuptools
7+
use_setuptools()
8+
from setuptools import setup, find_packages
9+
10+
11+
setup(name='redis_ds',
12+
version='1.0',
13+
description='simple python datastructure wrappings for redis',
14+
author='Will Larson',
15+
author_email='lethain@gmail.com',
16+
url='http://github.com/lethain/Redis-Python-Datastructures',
17+
packages=['redis_ds'],
18+
package_dir={'redis_ds': 'src/redis_ds'},
19+
include_package_data=True,
20+
requires=(
21+
'redis'
22+
)
23+
)
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.

0 commit comments

Comments
 (0)