-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathsetup.py
42 lines (39 loc) · 1.18 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
42
#!/usr/bin/env python
# -*- coding: utf-8 -*-
# Import python libs
import os
import sys
# Import sorbic libs
import sorbic
if 'USE_SETUPTOOLS' in os.environ or 'setuptools' in sys.modules:
from setuptools import setup
else:
from distutils.core import setup
NAME = 'sorbic'
DESC = ('Pure python distributed database (engine first)')
VERSION = sorbic.version
setup(name=NAME,
version=VERSION,
description=DESC,
author='Thomas S Hatch',
author_email='[email protected]',
url='https://github.com/thatch45/sorbic',
classifiers=[
'Operating System :: OS Independent',
'License :: OSI Approved :: Apache Software License',
'Programming Language :: Python',
'Programming Language :: Python :: 2.6',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3.4',
'Development Status :: 2 - Pre-Alpha',
'Topic :: Database',
'Topic :: Database :: Database Engines/Servers',
'Intended Audience :: Developers',
],
packages=[
'sorbic',
'sorbic.ind',
'sorbic.stor',
'sorbic.utils',
]
)