~janusz-martyniak/mcdb/mice.cdb.client.api-python

« back to all changes in this revision

Viewing changes to src/setup.py

  • Committer: Antony Wilson
  • Date: 2011-09-01 08:10:55 UTC
  • Revision ID: antony.wilson@stfc.ac.uk-20110901081055-5hcu1wbeh9f75sdd
add calibration, fixes to cabling, pylint stuff

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
1
#!/usr/bin/python
 
2
""" setup script """
2
3
 
3
 
import sys
4
4
import cdb
5
5
from distutils.core import setup
6
6
 
11
11
    author="MICE",
12
12
    author_email='mice-cdb@jiscmail.ac.uk',
13
13
    packages=['cdb'],
14
 
    url="http://micewww.pp.rl.ac.uk",
 
14
    url="http://cdb.mice.rl.ac.uk",
15
15
    requires=["suds", "bitarray"],
16
 
    provides=["cdb"]
 
16
    provides=["cdb"],
17
17
)
18
18