-
Notifications
You must be signed in to change notification settings - Fork 9
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #26 from alex3kov/master
Doc clarification and style cleanups
- Loading branch information
Showing
6 changed files
with
25 additions
and
18 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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -2,5 +2,6 @@ | |
/nomad.egg-info/ | ||
/dist/ | ||
/docs/_build/ | ||
/docs/.doctrees/ | ||
MANIFEST | ||
/_py3/ |
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
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,6 +1,8 @@ | ||
#!/usr/bin/env python | ||
|
||
import sys, os, re | ||
import sys | ||
import os | ||
import re | ||
from setuptools import setup, find_packages | ||
|
||
|
||
|
@@ -19,22 +21,23 @@ | |
def read(fname): | ||
return open(os.path.join(os.path.dirname(__file__), fname)).read() | ||
|
||
|
||
def find_version(): | ||
val, = re.findall(r"__version__ = '([^']+)'", | ||
read('nomad/__init__.py')) | ||
return val | ||
|
||
|
||
config = dict( | ||
name = 'nomad', | ||
description = 'simple sql migration tool to save you from becoming mad', | ||
long_description = read('README.rst'), | ||
license = 'ISC', | ||
version = find_version(), | ||
author = 'Alexander Solovyov', | ||
author_email = '[email protected]', | ||
url = 'http://github.com/piranha/nomad/', | ||
classifiers = [ | ||
name='nomad', | ||
description='simple sql migration tool to save you from becoming mad', | ||
long_description=read('README.rst'), | ||
license='ISC', | ||
version=find_version(), | ||
author='Alexander Solovyov', | ||
author_email='[email protected]', | ||
url='http://github.com/piranha/nomad/', | ||
classifiers=[ | ||
'Environment :: Console', | ||
'Intended Audience :: Developers', | ||
'License :: OSI Approved :: BSD License', | ||
|
@@ -45,9 +48,9 @@ def find_version(): | |
'Topic :: Database' | ||
], | ||
|
||
install_requires = DEPS, | ||
packages = find_packages(), | ||
entry_points = {'console_scripts': ['nomad=nomad:app.dispatch']}, | ||
install_requires=DEPS, | ||
packages=find_packages(), | ||
entry_points={'console_scripts': ['nomad=nomad:app.dispatch']}, | ||
platforms='any', | ||
**extra) | ||
|
||
|