This site is supported by donations to The OEIS Foundation.

User:R. J. Mathar/oeisPy/setup.py

From OeisWiki
Jump to: navigation, search
from distutils.core import setup
import glob

version = '0.0.1'
doc_prefix = 'doc/'

setup(
    name='oeisPy',
    version=version,
    url='http://www.mpia.de/~mathar',
    author='Richard J. Mathar',
    author_email='mathar@mpia.de',
    description='Online-Encylopedia of Integer Sequences',
    classifiers=['Development Status :: 2 - Pre-Alpha',
                 'License :: OSI Approved :: BSD License',
                 'Operating System :: OS Independent',
                 'Programming Language :: Python :: 3.1',
                 'Intended Audience :: Science/Research',
                 'Natural Language :: English',
                 'Topic :: Scientific/Engineering :: Mathematics',
                ],

    packages=['oeisPy'],
    data_files=[('',['doc/oeis_core.html','doc/oeis_bulk.html','doc/oeis_trans.html'])],
    scripts=[],
    ext_modules=[]
)