~notmyname/swift/saio_reference

« back to all changes in this revision

Viewing changes to setup.py

  • Committer: Monty Taylor
  • Date: 2010-07-14 18:42:35 UTC
  • mfrom: (2.1.11 builddeb)
  • Revision ID: mordred@inaugust.com-20100714184235-c31jqc1krvy4nz3t
Updated tree to use import_dsc/import_upstream from bzr-builddeb.

Show diffs side-by-side

added added

removed removed

Lines of Context:
14
14
# See the License for the specific language governing permissions and
15
15
# limitations under the License.
16
16
 
17
 
from distutils.core import setup
 
17
from setuptools import setup, find_packages
 
18
 
 
19
name='swift'
 
20
version='1.0.0'
18
21
 
19
22
setup(
20
 
    name='swift',
21
 
    version='1.0.0-1',
 
23
    name=name,
 
24
    version=version,
22
25
    description='Swift',
23
26
    license='Apache License (2.0)',
24
27
    author='OpenStack, LLC.',
25
28
    url='https://launchpad.net/swift',
26
 
    packages=['swift', 'swift.common'],
 
29
    packages=find_packages(exclude=['tests','bin']),
 
30
    test_suite = 'nose.collector',
 
31
    command_options = {
 
32
        'build_sphinx': {
 
33
            'version': ('setup.py', version),
 
34
      }
 
35
    },
27
36
    classifiers=[
28
37
        'Development Status :: 4 - Beta',
29
38
        'License :: OSI Approved :: Apache Software License',