forked from louiseGrandjonc/pageinspect_inspector
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
35 lines (31 loc) · 988 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
import os
from setuptools import setup, find_packages
version = __import__('inspector').__version__
root = os.path.abspath(os.path.dirname(__file__))
with open(os.path.join(root, 'README.rst')) as f:
README = f.read()
setup(
name='pageinspect-inspector',
version=version,
description='Draws the BTree for the pgindex of your choice',
long_description=README,
author='Louise Grandjonc',
author_email='[email protected]',
# url='http://github.com/ulule/django-courriers',
packages=['inspector'],
zip_safe=False,
include_package_data=True,
install_requires=[
"psycopg2",
"jinja2",
],
classifiers=[
'Environment :: Web Environment',
'Intended Audience :: Developers',
'License :: OSI Approved :: MIT License',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Programming Language :: Python :: 3',
'Topic :: Utilities',
]
)