~allenap/maas-test/resources-all-the-way-down

« back to all changes in this revision

Viewing changes to setup.py

  • Committer: Gavin Panella
  • Date: 2013-11-13 10:50:00 UTC
  • mfrom: (19.1.3 setup-develop)
  • Revision ID: gavin@gromper.net-20131113105000-qm9hxecv6x68scsj
[r=jtv][author=allenap] Better modelling of dependencies for make, and use the develop mode to create bin/maas-test.

Show diffs side-by-side

added added

removed removed

Lines of Context:
15
15
from setuptools import setup
16
16
 
17
17
 
18
 
with open("requirements.txt", "rb") as fd:
19
 
    requirements = {line.strip() for line in fd}
20
 
 
21
 
 
22
18
setup(
23
19
    name='maas-test',
24
20
    version="0.1",
25
21
    packages={b'maastest'},
26
22
    package_dir={'maastest': 'maastest'},
27
 
    install_requires=requirements,
28
 
    tests_require={"testtools >= 0.9.14"},
 
23
    install_requires=[],  # It's complicated; see README.txt
 
24
    tests_require=[],  # It's complicated; see README.txt
29
25
    test_suite="maastest.tests",
30
26
    include_package_data=True,
31
27
    zip_safe=False,