-
Notifications
You must be signed in to change notification settings - Fork 10
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
a7c13fe
commit 3d9ce85
Showing
4 changed files
with
79 additions
and
25 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,28 +1,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/thomashuang/dbpy', | ||
url='https://github.com/whiteclover/dbpy', | ||
packages=find_packages(exclude=['samples', 'tests*']), | ||
zip_safe=False, | ||
include_package_data=True, | ||
install_requires=['setuptools'], | ||
test_suite='unittests', | ||
classifiers=( | ||
"Development Status :: 3 - Alpha", | ||
"License :: OSI Approved :: GNU Affero General Public License v3", | ||
"Natural Language :: English", | ||
"Programming Language :: Python", | ||
"Programming Language :: Python :: 2.7", | ||
"Operating System :: OS Independent", | ||
"Topic :: Database" | ||
) | ||
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' | ||
] | ||
) |