>
> I think once you upload pyensembl it will be at the appropriate
> location. Give me the file (drop it on iorich, for example) and I can
> try it out.
>
Sure. I am currently trying to use
python setup.py sdist (as Rob showed me)
to generate the tar ball.
I just worked out the syntax on how to include my html docs and doctests
into setup.py. Attached is my setup.py. Haven't tested whether it worked
or not ...
jenny
>
> cheers,
> --titus
> --
> C. Titus Brown, [EMAIL PROTECTED]
>
> >
>
--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups
"pygr-dev" group.
To post to this group, send email to [email protected]
To unsubscribe from this group, send email to [EMAIL PROTECTED]
For more options, visit this group at
http://groups.google.com/group/pygr-dev?hl=en
-~----------~----~----~----~------~----~------~--~---
#!/usr/bin/python
"""
Pyensembl
****
Pyensembl is a Python API for the Ensembl database.
"""
#from distutils.core import setup, Extension
from setuptools import setup
setup(
name='pyensembl',
version='0.1.0',
description='Python API for the Ensembl database',
author='Jenny Qian',
author_email='[EMAIL PROTECTED]',
url='http://pygr.googlecode.com/files/pyensembl-0.1.0.tar.gz'
packages=['ensembl', 'ensembltests', 'doc'],
long_description="""\
pyensembl is the Python API for accessing the Ensembl database system. Currently,
pyensembl is known to work on Linux, MacOS X and with homo_sapiens_core_47_36i.
""",
py_modules=[
"ensembl.__init__",
"ensembl.adaptor",
"ensembl.datamodel",
"ensembl.featuremapping"
],
#test_suite =[
# "ensembltest.testadaptor",
# "ensembltest.testdatamodel"
# ],
classifiers=[
"License :: OSI Approved :: GNU General Public License (GPL)",
"Programming Language :: Python",
"Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"Topic :: Ensembl",
],
keywords='ensembl',
license='GPL',
install_requires=[
'setuptools',
],
package_data = {'doc':['*.html'], 'ensembltests':['*.py']}
)