-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathsetup.py
34 lines (31 loc) · 980 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
#!/usr/bin/env python
# -*- coding: utf-8 -*-
#Author: Tim Henderson
#Email: [email protected]
#For licensing see the LICENSE file in the top level directory.
try:
from setuptools import setup, find_packages
except ImportError:
from ez_setup import use_setuptools
use_setuptools()
from setuptools import setup, find_packages
setup(
name = 'pybptree',
version = 'git master',
description = 'Go file-structures/bptree RPC interface',
author = 'Tim Henderson',
author_email = '[email protected]',
url = 'http://github.com/timtadh/file-structures',
keywords = ['b+tree'],
classifiers = [
"Programming Language :: Python",
"Programming Language :: Python :: 2.6",
"License :: OSI Approved :: GPL",
"Operating System :: POSIX",
"Topic :: Utilities",
"Intended Audience :: Developers",
],
packages = find_packages(),
include_package_data = False,
zip_safe = False
)