-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathsetup.py
More file actions
32 lines (27 loc) · 706 Bytes
/
setup.py
File metadata and controls
32 lines (27 loc) · 706 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
28
29
30
31
32
#!/usr/bin/env python
import distutils.core
import sys
try:
import setuptools
except ImportError:
pass
version = "0.2"
with open('README.rst') as f:
long_description = f.read()
distutils.core.setup(
name="simple_vp",
version=version,
packages = ["simple_vp"],
#package_data = {
# "simple_vp": ["adata.csv"],
# },
author="Koteth",
author_email="koteth@gmail.com",
license="http://www.apache.org/licenses/LICENSE-2.0",
description="Implementation of a vp-tree in pure python",
classifiers=[
'Programming Language :: Python :: 2.6',
'Programming Language :: Python :: 2.7',
],
long_description=long_description,
)