Skip to content

Commit

Permalink
Added basic setup for pip packaging
Browse files Browse the repository at this point in the history
  • Loading branch information
gi0baro committed Dec 6, 2014
1 parent db46c4e commit 130199d
Show file tree
Hide file tree
Showing 3 changed files with 49 additions and 0 deletions.
3 changes: 3 additions & 0 deletions MANIFEST.in
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
include LICENSE
include AUTHORS
recursive-include docs *
5 changes: 5 additions & 0 deletions setup.cfg
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
[aliases]
release = egg_info -RDb ''

[wheel]
universal = 1
41 changes: 41 additions & 0 deletions setup.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,41 @@
"""
pyDAL description...
Links
-----
* `website <http://>`_
* `documentation <http://>`_
* `git repo <http://>`_
"""

from setuptools import setup
setup(
name='pyDAL',
version='1.0',
url='http://',
license='BSD',
author='Massimo Di Pierro',
author_email='[email protected]',
maintainer='Giovanni Barillari',
maintainer_email='[email protected]',
description='Some description needed here',
long_description=__doc__,
packages=['pydal', 'pydal.adapters', 'pydal.helpers', 'pydal.contrib',
'pydal.contrib.pg8000', 'pydal.contrib.pymysql',
'pydal.contrib.pymysql.constants', 'pydal.contrib.simplejson'],
include_package_data=True,
zip_safe=False,
platforms='any',
classifiers=[
'Development Status :: 4 - Beta',
'Environment :: Web Environment',
'Intended Audience :: Developers',
'License :: OSI Approved :: BSD License',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Programming Language :: Python :: 2',
'Topic :: Internet :: WWW/HTTP :: Dynamic Content',
'Topic :: Software Development :: Libraries :: Python Modules'
]
)

0 comments on commit 130199d

Please sign in to comment.