Skip to content

Commit

Permalink
Updates setup.py, moving some metadata to setup.cfg
Browse files Browse the repository at this point in the history
  • Loading branch information
ravenoak committed Apr 1, 2019
1 parent d282cf4 commit 4b1f663
Show file tree
Hide file tree
Showing 2 changed files with 27 additions and 28 deletions.
24 changes: 23 additions & 1 deletion setup.cfg
Original file line number Diff line number Diff line change
@@ -1,3 +1,25 @@
[metadata]
author = Caitlyn O'Hanna
author_email = ravenoak@virtualxistenz.com
classifiers =
Development Status :: 2 - Pre-Alpha
Environment :: Plugins
Environment :: Web Environment
Framework :: Flask
Intended Audience :: Developers
License :: OSI Approved :: GNU Lesser General Public License v3 or later (LGPLv3+)
Programming Language :: Python :: 3.6
Operating System :: OS Independent
Programming Language :: Python :: 3 :: Only
Topic :: Database
Topic :: Internet :: WWW/HTTP :: WSGI
Topic :: Software Development :: Libraries :: Python Modules
license_file = LICENSE.txt
project_urls =
Documentation = http://flask-arango-orm.readthedocs.io/
Source Code = https://github.com/QuaererePlatform/Flask-arango-orm
url = https://github.com/QuaererePlatform/Flask-arango-orm
[bumpversion]
commit = True
tag = True
Expand All @@ -12,7 +34,7 @@ serialize =
[aliases]
test = pytest
[wheel]
[bdist_wheel]
universal = True
[options]
Expand Down
31 changes: 4 additions & 27 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -8,8 +8,8 @@
PROJECT_RELEASE = '0.1.0'
PROJECT_VERSION = '.'.join(PROJECT_RELEASE.split('.')[:2])
INSTALL_REQUIRES = [
'arango-orm',
'Flask', ]
'arango-orm>=0.5.3',
'Flask>=1.0.0', ]
SETUP_REQUIRES = [
'setuptools',
'pytest-runner',
Expand All @@ -21,38 +21,15 @@


def readme():
with open('README.rst') as f:
return f.read()
with open('README.rst') as fh:
return fh.read()


setup(name=PROJECT_NAME,
version=PROJECT_RELEASE,
description='Flask extension for arango-orm',
license='LGPL-3.0',
license_file='LICENSE.txt',
long_description=readme(),
classifiers=[
'Development Status :: 2 - Pre-Alpha',
'Environment :: Plugins',
'Environment :: Web Environment',
'Framework :: Flask',
'Intended Audience :: Developers',
'License :: OSI Approved :: GNU Lesser General Public License v3 '
'or later (LGPLv3+)',
'Programming Language :: Python :: 3.6',
'Operating System :: OS Independent',
'Programming Language :: Python :: 3 :: Only',
'Topic :: Database',
'Topic :: Internet :: WWW/HTTP :: WSGI',
'Topic :: Software Development :: Libraries :: Python Modules', ],
author="Caitlyn O'Hanna",
author_email='ravenoak@virtualxistenz.com',
url='https://github.com/QuaererePlatform/Flask-arango-orm',
project_urls={
'Documentation': 'http://flask-arango-orm.readthedocs.io/',
'Source Code': 'https://github.com/QuaererePlatform/Flask-arango'
'-orm',
},
packages=find_packages(exclude=['docs', 'tests']),
zip_safe=True,
test_suite='tests',
Expand Down

0 comments on commit 4b1f663

Please sign in to comment.