-
Notifications
You must be signed in to change notification settings - Fork 10
/
setup.py
39 lines (36 loc) · 1.27 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
#!/usr/bin/env python
from setuptools import setup, find_packages
import sys
from db import __version__
from codecs import open
with open('README.rst', 'r', 'utf-8') as f:
readme = f.read()
setup(
name='dbpy',
version=__version__,
author="Thomas Huang",
author_email='lyanghwy@gmail.com',
description="database abstraction layer for pythoneer",
long_description=readme,
license="GPL",
keywords="database abstraction layer for pythoneer(orm, database)",
url='https://github.com/whiteclover/dbpy',
packages=find_packages(exclude=['samples', 'tests*']),
zip_safe=False,
include_package_data=True,
install_requires=['setuptools'],
test_suite='unittest',
classifiers=[
'Development Status :: 3 - Alpha',
'License :: OSI Approved :: GNU Affero General Public License v3',
'Natural Language :: English',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.4',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: Implementation :: CPython',
'Programming Language :: Python :: Implementation :: PyPy',
'Operating System :: OS Independent',
'Topic :: Database'
]
)